Extract Headings
Create an outline of your current page
O que é Extract Headings?
Extract Headings é uma extensão do Chrome desenvolvida por meruri, e sua principal característica é "Create an outline of your current page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Extract Headings
Baixe arquivos de extensão Extract Headings no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
source code: https://github.com/himerumeru/extract-headings
Informações Básicas da Extensão
Nome | |
ID | ioapcagfihhgfgkadndilpepggjdgajp |
URL Oficial | https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp |
Descrição | Create an outline of your current page |
Tamanho do Arquivo | 7.06 KB |
Contagem de Instalações | 120 |
Versão Atual | 0.0.1 |
Última Atualização | 2016-07-03 |
Data de Publicação | 2016-07-03 |
Desenvolvedor | meruri |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/himerumeru/extract-headings |
Idiomas Suportados | 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" ] } |