Extract Headings
Create an outline of your current page
Apa itu Extract Headings?
Extract Headings adalah ekstensi Chrome yang dikembangkan oleh meruri, dan fitur utamanya adalah "Create an outline of your current page".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Extract Headings
Unduh file ekstensi Extract Headings dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
source code: https://github.com/himerumeru/extract-headings
Informasi Dasar Ekstensi
Nama | |
ID | ioapcagfihhgfgkadndilpepggjdgajp |
URL Resmi | https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp |
Deskripsi | Create an outline of your current page |
Ukuran File | 7.06 KB |
Jumlah Instalasi | 120 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2016-07-03 |
Tanggal Publikasi | 2016-07-03 |
Pengembang | meruri |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/himerumeru/extract-headings |
Bahasa yang Didukung | 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" ] } |