gem install compasscd <project's-base-directory>compass compile- Install the base folder as an Unpacked Extension on Chrome (refer: https://developer.chrome.com/extensions)
- Open a supported webpage such as https://www.google.com/search?q=hello+world
- Press
Ja few times to move down through the search results. - Press
Kto move up results. - Press
Oto open a result on a new tab (orEnterto open it on the same tab). - Additional features are described at ------ https://insert-link------
--- 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_scriptsfolder. -
content_scripts/mod_main.jsis the main module that loads the other modules, and so is a good starting point to understand the flow of the program. -
manifest.jsondefines the order in which the various.jsfiles run -
_uis used as the top level namespace. -
Files with the prefix
mod_define independent modules. -
_readme_module_template.jsdescribes the template to create modules.