-
Download the
eb-utility-beltfolder. -
Go to
chrome://extensions/and check the box for Developer mode in the top right. -
Click the
Load unpacked extensionbutton and select this folder for your extension to install it.PROTIP: You can enable a full screen, (and debugging) by using the id provided in
chrome://extensions/and navigating tochrome-extension://{id}/index.html
- Chrome APIs can handle most things, but if you need/want to use node - you will need invoke some browserify magic. This will bundle all of your requires into your specified file that you will run in the browser.
npm install -g browserify- Find yourself where needs be and execute something akin to
browserify js/formatters/sqlFormatter.js > js/formatters/sqlFormatter4browser.js - Refer that bundle in your
.htmland you're gravy :]
