indices

indices

Creates an index for articles on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "indices",
  "version": "0.4.0",
  "description": "Creates an index for articles on the web.",
  "icons": {
    "128": "images/indices.png"
  },
  "background": {
    "page": "background/background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "importedScripts/jquery.min.js",
        "contentScripts/contentScript.js"
      ],
      "css": [
        "contentScripts/contentScript.css"
      ]
    }
  ],
  "permissions": [
    "contextMenus"
  ],
  "content_security_policy": "script-src https://ssl.google-analytics.com https://www.google-analytics.com 'self'; object-src 'self'",
  "manifest_version": 2
}