Extract Headings
Create an outline of your current page
Cos'è Extract Headings?
Extract Headings è un'estensione di Chrome sviluppata da meruri, e la sua funzione principale è "Create an outline of your current page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Extract Headings
Scarica i file di estensione Extract Headings in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
source code: https://github.com/himerumeru/extract-headings Informazioni di Base sull'Estensione
| Nome | |
| ID | ioapcagfihhgfgkadndilpepggjdgajp |
| URL Ufficiale | https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp |
| Descrizione | Create an outline of your current page |
| Dimensione del File | 7.06 KB |
| Conteggio Installazioni | 120 |
| Versione Corrente | 0.0.1 |
| Ultimo Aggiornamento | 2016-07-03 |
| Data di Pubblicazione | 2016-07-03 |
| Sviluppatore | meruri |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/himerumeru/extract-headings |
| Lingue Supportate | 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"
]
} | |