Article ToC Chrome Extension

Article ToC Chrome Extension

Displays a clickable outline of all topic headers for articles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Article ToC Chrome Extension",
  "description": "Displays a clickable outline of all topic headers for articles",
  "version": "1.1.0",
  "homepage_url": "https://github.com/e-cloud/article-toc-chrome-extension",
  "author": [
    "e-cloud <[email protected]>",
    "Dan Kaplun <[email protected]>"
  ],
  "icons": {
    "128": "static/toc-logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/js/app.js"
      ],
      "css": [
        "static/css/app.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "chrome_style": true
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ]
}