Skip to content

Instantly share code, notes, and snippets.

@r-brown
Last active July 28, 2020 06:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-brown/046eb96c8d7b765b05803424e8416f23 to your computer and use it in GitHub Desktop.
Save r-brown/046eb96c8d7b765b05803424e8416f23 to your computer and use it in GitHub Desktop.
// 1) Open website
// e.g. https://netlicensing.io
// 2) Open browser console
// - Firefox: Tools > Web Developer > Web Console
// - Chrome: More Tools > Developer Tools
// - Safari: Develop > Show JavaScript Console
// 3) Load GuideChimp scripts and styles
fetch('https://io.labs64.com/GuideChimp/docs/samples/bootstrap-browser-console.js')
.then(response => response.text())
.then(text => eval(text));
// 4) (optional) Load GuideChimp built-in plugins
fetch('https://io.labs64.com/GuideChimp/docs/samples/bootstrap-plugins.js')
.then(response => response.text())
.then(text => eval(text));
// 5) Run tour
fetch('https://io.labs64.com/GuideChimp/docs/tours/netlicensing.io.js')
.then(response => response.text())
.then(text => eval(text));
// Run tour
GuideChimp(tour).start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment