Cache Text

Cache Text

Set shortcuts to find, fill, and open new tabs more quickly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cache Text",
  "version": "1.3.5.1",
  "description": "Set shortcuts to find, fill, and open new tabs more quickly.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "highlight.css"
      ],
      "js": [
        "jquery.js",
        "highlight.js",
        "keyboard.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "<all_urls>",
    "tabs"
  ],
  "options_page": "options.html",
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "Command+Shift+X"
      },
      "description": "Enable the extension"
    }
  },
  "background": {
    "page": "bindings.html"
  },
  "icons": {
    "48": "images/icon48.png"
  },
  "page_action": {
    "default_icon": "images/off_icon.png",
    "default_popup": "cache.html"
  }
}