Extract Headings

Create an outline of your current page

Wat is Extract Headings?

Extract Headings is een Chrome-extensie ontwikkeld door meruri, en de belangrijkste functie is "Create an outline of your current page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Extract Headings

Download Extract Headings-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        source code: https://github.com/himerumeru/extract-headings                    

Basisinformatie over de Extensie

Naam Extract Headings Extract Headings
ID ioapcagfihhgfgkadndilpepggjdgajp
Officiële URL https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp
Beschrijving Create an outline of your current page
Bestandsgrootte 7.06 KB
Aantal Installaties 120
Huidige Versie 0.0.1
Laatst Bijgewerkt 2016-07-03
Publicatiedatum 2016-07-03
Ontwikkelaar meruri
Betalingswijze free
Extensiewebsite https://github.com/himerumeru/extract-headings
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extract Headings",
    "description": "Create an outline of your current page",
    "version": "0.0.1",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H",
                "windows": "Ctrl+Shift+H"
            }
        }
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/common.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage"
    ]
}