Table-of-contents-crx

Table-of-contents-crx

Creates an expandable Table-of-Contents on ANY web-page with headings

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Table-of-contents-crx",
  "version": "2014.1.10.16",
  "description": "Creates an expandable Table-of-Contents on ANY web-page with headings",
  "short_name": "crxToc",
  "icons": {
    "16": "toc-img-16.png",
    "48": "toc-img-48.png",
    "128": "toc-img-128.png"
  },
  "browser_action": {
    "default_icon": "toc-img-16.png",
    "default_name": "Table-of-contents-crx"
  },
  "content_scripts": [
    {
      "css": [
        "toc.css"
      ],
      "js": [
        "jquery-2.0.3.min.js",
        "toc.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "toc-event-page.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "jquery-2.0.3.min.map"
  ]
}