Extract Headings
Create an outline of your current page
什麼是Extract Headings?
Extract Headings是由meruri開發的Chrome擴展程式,該擴展的主要功能是“Create an outline of your current page”。
擴展截圖
下載Extract Headings擴展crx文件
下載Extract Headings擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
source code: https://github.com/himerumeru/extract-headings 擴展基本資訊
| 名稱 | |
| ID | ioapcagfihhgfgkadndilpepggjdgajp |
| 官方網址 | 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"
]
} | |