Scrollbar of Contents

Scrollbar of Contents

Creates clickable heading markers next to the scrollbar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Scrollbar of Contents",
  "version": "0.3.2",
  "description": "Creates clickable heading markers next to the scrollbar.",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/icon_browser.png",
    "default_title": "Scrollbar of Contents"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/soc.css"
      ],
      "js": [
        "js/soc.js",
        "js/filterHeading.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "incognito": "spanning"
}