HeadingsMap

HeadingsMap

The extension generates a document-map or index of any web document structured with headings and/or with sections in HTML 5. It shows the headings structure, the errors in the structure (ie. incorrect levels), and it works as HTML5 Outliner too.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "author": "Jorge Rumoroso",
  "manifest_version": 2,
  "version": "4.8.4",
  "icons": {
    "48": "icons/headingsMap48.png",
    "128": "icons/headingsMap128_with_margin.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/headingsmap.js"
      ],
      "css": [
        "css/inDocumentStyles.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "service-worker.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "storage",
    "webNavigation"
  ],
  "browser_action": {
    "default_icon": {
      "48": "icons/headingsMap48.png"
    },
    "default_title": "headingsMap"
  },
  "web_accessible_resources": [
    "html/*",
    "css/*",
    "getFrameId",
    "_locales/*"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "58.0a1"
    }
  }
}