Extract Headings
Create an outline of your current page
Qu'est-ce que Extract Headings ?
Extract Headings est une extension Chrome développée par meruri, et sa fonction principale est "Create an outline of your current page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Extract Headings
Téléchargez les fichiers d'extension Extract Headings au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
source code: https://github.com/himerumeru/extract-headings
Informations de Base sur l'Extension
Nom | |
ID | ioapcagfihhgfgkadndilpepggjdgajp |
URL Officiel | https://chromewebstore.google.com/detail/extract-headings/ioapcagfihhgfgkadndilpepggjdgajp |
Description | Create an outline of your current page |
Taille du Fichier | 7.06 KB |
Nombre d'Installations | 120 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2016-07-03 |
Date de Publication | 2016-07-03 |
Développeur | meruri |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/himerumeru/extract-headings |
Langues Prises en Charge | 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" ] } |