Burnt Chrome 
Class Project for CSCI 3428 Software Engineering
About
Documents
Authors / Team Black
Evan Larose | Glavin Wiechert | Nathan Hernden | Ziyun (Toby) Zhong |
---|---|---|---|
Software Tester | Project Leader, Lead Software Engineer | Lead Writer | Software Developer |
Screenshots
Login | Whitelist |
---|---|
![]() |
![]() |
Contributing
- Install Node.js &
npm
Install the dependencies using
npm
:npm install -g bower npm install
Watch for file changes and compile the extension:
npm start
To load your extension in Chrome, open up
chrome://extensions/
in your browser and clickDeveloper mode
in the top right. Now clickLoad unpacked extension…
and select theextension/
directory. You should now see your extension in the list.When you change or add code in your extension, just come back to the
chrome://extensions/
page and reload the page. Chrome will reload your extension. I recommend that you installExtensions Reloader
.- Profit
Developing
We are using ES6 which is compiled down to ES5. See https://github.com/lukehoban/es6features for a detailed list of features supported by ES6.
Commands
npm run compile
: Compileextension/src/
toextension/dist/
directory.npm start
(ornpm run start
): Watch for file changes inextension/src/
directory and compile changes toextension/dist/
directory.npm run docs
: Build documentation for source code todocs/
directory. Opendocs/index.html
in your web browser to view after built.