Extract Headings

Create an outline of your current page

Was ist Extract Headings?

Extract Headings ist eine Chrome-Erweiterung, die von meruri entwickelt wurde, und ihr Hauptmerkmal ist "Create an outline of your current page".

Erweiterungsscreenshots

screenshot

Extract Headings-Erweiterungs-CRX-Datei herunterladen

Laden Sie Extract Headings-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Extract Headings Extract Headings
ID ioapcagfihhgfgkadndilpepggjdgajp
Offizielle URL https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp
Beschreibung Create an outline of your current page
Dateigröße 7.06 KB
Installationsanzahl 120
Aktuelle Version 0.0.1
Letztes Update 2016-07-03
Veröffentlichungsdatum 2016-07-03
Entwickler meruri
Zahlungsart free
Erweiterungswebsite https://github.com/himerumeru/extract-headings
Unterstützte Sprachen 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"
    ]
}