HTML5 Outliner

HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HTML5 Outliner",
  "short_name": "h5o",
  "manifest_version": 2,
  "description": "Generates a navigable page outline with heading and sectioning elements",
  "icons": {
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "outliner.min.js",
        "createOutline.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": "img/16.png",
    "default_title": "Outline",
    "default_popup": "popup.html"
  },
  "version": "0.8.14",
  "author": {
    "name": "Dominykas Blyžė",
    "email": "[email protected]",
    "url": "http://www.dominykas.com/"
  }
}