FetcherX chrome extension

FetcherX chrome extension

fetcherx.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FetcherX chrome extension",
  "version": "1.0.4",
  "description": "fetcherx.com",
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "FetcherX",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-1.8.3.js",
        "js/util.js",
        "js/content-script.js"
      ],
      "all_frames": true,
      "css": [
        "css/custom.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "contextMenus",
    "notifications",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "homepage_url": "https://fetcherx.com",
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "omnibox": {
    "keyword": "go"
  },
  "default_locale": "en",
  "devtools_page": "devtools.html"
}