hah

hah

hit a hint and tab switcher

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "hah",
  "description": "hit a hint and tab switcher",
  "version": "0.7.0",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://mail.google.com/*",
        "*://*.google.com/calendar/*"
      ],
      "css": [
        "hitahint.css"
      ],
      "js": [
        "jquery-1.9.0.min.js",
        "prelude.min.js",
        "config.js",
        "keymap.js",
        "command_settings.js",
        "content_script_hitahint.js",
        "content_script_hitahint_newtab.js",
        "content_script_selector.js",
        "content_script_formfocus.js",
        "content_script_neutral.js",
        "content_script.js"
      ],
      "all_frames": false
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "web_accessible_resources": [
    "timer.png"
  ],
  "options_page": "options.html",
  "permissions": [
    "history",
    "tabs",
    "bookmarks",
    "storage",
    "notifications"
  ],
  "manifest_version": 2
}