Table of Contents Sidebar

Table of Contents Sidebar

A lightweight plugin that generates a table of contents sidebar for navigating or copying

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Table of Contents Sidebar",
  "version": "1.0",
  "author": "CodeDraken",
  "description": "A lightweight plugin that generates a table of contents sidebar for navigating or copying",
  "manifest_version": 2,
  "icons": {
    "128": "./assets/icon128.png"
  },
  "browser_action": {
    "default_title": "ToC",
    "default_popup": "./html/popup.html"
  },
  "background": {
    "scripts": [
      "./js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab"
  ]
}