WebHelp

WebHelp

Extension to support reading and web browsing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icons/icon-19.png",
    "128": "images/icons/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "styles/spectrum.css",
        "styles/hint.min.css",
        "styles/app.css"
      ],
      "js": [
        "scripts/injectApp.js",
        "components/jquery-2.1.3.min.js",
        "components/jquery.injectCSS.js",
        "components/spectrum.js",
        "components/textHighlighter.js",
        "scripts/app.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "app.html",
    "images/buttons/*.svg",
    "images/buttons/*.png",
    "fonts/*"
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icons/icon-19.png",
      "38": "images/icons/icon-38.png"
    },
    "default_title": "WebHelp"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "<all_urls>",
    "https://*/*"
  ]
}