Extract Headings

Create an outline of your current page

Extract Headingsとは何ですか?

Extract Headingsはmeruriによって開発されたChromeの拡張機能で、その主な機能は「Create an outline of your current page」です。

拡張機能のスクリーンショット

screenshot

Extract Headings拡張機能のCRXファイルをダウンロード

Extract Headings拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Extract Headings Extract Headings
ID ioapcagfihhgfgkadndilpepggjdgajp
公式URL https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp
説明 Create an outline of your current page
ファイルサイズ 7.06 KB
インストール数 120
現在のバージョン 0.0.1
最終更新日 2016-07-03
公開日 2016-07-03
開発者 meruri
支払い方法 free
拡張機能のウェブサイト https://github.com/himerumeru/extract-headings
対応言語 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"
    ]
}