项目作者: MakeBetter

项目描述 :
Enhanced navigation on the web
高级语言: JavaScript
项目地址: git://github.com/MakeBetter/Units.git
创建时间: 2013-03-03T20:42:03Z
项目社区:https://github.com/MakeBetter/Units

开源协议:

下载


Units - Enhanced navigation on the web

Setup

Usage

  • Open a supported webpage such as https://www.google.com/search?q=hello+world
  • Press J a few times to move down through the search results.
  • Press K to move up results.
  • Press O to open a result on a new tab (or Enter to open it on the same tab).
  • Additional features are described at ——— https://insert-link———

Adding support for additional websites

—- ADD TEXT —-

Notes

  • 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.