Extract Headings

Create an outline of your current page

Co to jest Extract Headings?

Extract Headings to rozszerzenie Chrome opracowane przez meruri, a jego główną funkcją jest „Create an outline of your current page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Extract Headings

Pobierz pliki rozszerzeń Extract Headings w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Extract Headings Extract Headings
ID ioapcagfihhgfgkadndilpepggjdgajp
Oficjalny URL https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp
Opis Create an outline of your current page
Rozmiar pliku 7.06 KB
Liczba instalacji 120
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2016-07-03
Data Publikacji 2016-07-03
Deweloper meruri
Typ Płatności free
Strona Rozszerzenia https://github.com/himerumeru/extract-headings
Obsługiwane Języki 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"
    ]
}