The extension is written to run in Google Chrome, though likely works in Firefox as well.
The easiest way to run it is to install
web-ext
,
and then use the makefile
(make
or make build
) to issue the command web-ext run -t chromium
from the directory named
extension
.
If you don't want to install web-ext
, you can directly load the extension into Chrome yourself:
- Open the Extension Management page by navigating to
chrome://extensions
. - Enable Developer Mode by clicking the toggle switch next to Developer mode.
- Click the LOAD UNPACKED button and select the
extension
directory.
Once the extension is loaded, you can view logging output:
- Go to
chrome://extensions
- Toggle developer mode on
- Find this extension in the list and click "Details"
- Under "Inspect views", click "background page"
- Use the tabs at the top to view console output, network activity, etc
If you use web-ext
, it will automatically update (note: this feature seems to be buggy)
the extension whenever you edit a file that's
part of the extension. Otherwise, you will need to click the "Update" button on the extension's
page on chrome://extensions
.