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"
    ]
}