Smart TOC

Smart TOC

Webpage outliner

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Smart TOC",
  "version": "0.11.20",
  "description": "Webpage outliner",
  "action": {
    "default_icon": "icons/icon.png",
    "default_title": "Toggle table of contents"
  },
  "icons": {
    "128": "icons/icon.png"
  },
  "background": {
    "service_worker": "background/background.js"
  },
  "commands": {
    "toggle": {
      "description": "Show/hide TOC"
    },
    "prev": {
      "description": "Jump to previous heading"
    },
    "next": {
      "description": "Jump to next heading"
    },
    "search": {
      "description": "Toggle search (Pro)"
    },
    "theme": {
      "description": "Toggle dark mode (Pro)"
    },
    "expand:more": {
      "description": "Expand more"
    },
    "expand:less": {
      "description": "Expand less"
    },
    "expand:auto": {
      "description": "Expand auto"
    },
    "side:left": {
      "description": "Move panel to left"
    },
    "side:right": {
      "description": "Move panel to right"
    },
    "display:sidePanel": {
      "description": "Display as side panel"
    },
    "display:floating": {
      "description": "Display as floating"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "optional_permissions": [
    "identity",
    "identity.email",
    "tabs"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "author": "[email protected]"
}