Extract Headings
Create an outline of your current page
What is Extract Headings?
Extract Headings is a Chrome extension developed by meruri, and its main feature is "Create an outline of your current page".
Extension Screenshots
Download Extract Headings Extension CRX File
Download Extract Headings extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
source code: https://github.com/himerumeru/extract-headings
Extension Basic Information
Name | |
ID | ioapcagfihhgfgkadndilpepggjdgajp |
Official URL | https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp |
Description | Create an outline of your current page |
File Size | 7.06 KB |
Installation Count | 120 |
Current Version | 0.0.1 |
Last Updated | 2016-07-03 |
Publish Date | 2016-07-03 |
Developer | meruri |
Payment Type | free |
Extension Website | https://github.com/himerumeru/extract-headings |
Supported Languages | 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" ] } |