Enhanced navigation on the web
gem install compass
cd <project's-base-directory>
compass compile
J
a few times to move down through the search results.K
to move up results.O
to open a result on a new tab (or Enter
to open it on the same tab).—- ADD TEXT —-
A Chrome extension’s code typically comprises of one or more background scripts and/or
content scripts. (refer: [Chrome’s documentation on developing extensions
(https://developer.chrome.com/extensions))
Most of the code for this extension is within the content_scripts
folder.
content_scripts/mod_main.js
is the main module that loads the other modules, and so is a
good starting point to understand the flow of the program.
manifest.json
defines the order in which the various .js
files run
_u
is used as the top level namespace.
Files with the prefix mod_
define independent modules.
_readme_module_template.js
describes the template to create modules.