Highlight tool
Highlight tool with jumps and Regex
Qu'est-ce que Highlight tool ?
Highlight tool est une extension Chrome développée par Utopia, et sa fonction principale est "Highlight tool with jumps and Regex".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Highlight tool
Téléchargez les fichiers d'extension Highlight tool 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
Quickly highlight text in webpages using regular text or RegExp. Press Ctrl+j to move to the next match, and Ctrl+k to move previous match.
Informations de Base sur l'Extension
Nom | |
ID | bocgmaooafgikalnonpaccinefpncobc |
URL Officiel | https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc |
Description | Highlight tool with jumps and Regex |
Taille du Fichier | 209 KB |
Nombre d'Installations | 3,000 |
Version Actuelle | 0.0.6 |
Dernière Mise à Jour | 2017-02-14 |
Date de Publication | 2017-02-14 |
Évaluation | 4.00/5 Total 5 Évaluations |
Développeur | Utopia |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.6", "name": "Highlight tool", "description": "Highlight tool with jumps and Regex", "manifest_version": 2, "icons": { "16": "images\/icon-16.png", "19": "images\/icon-19.png", "38": "images\/icon-38.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ], "browser_action": { "default_popup": "popup.html" }, "permissions": [ "tabs", "storage", "notifications" ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "popup.html" ] } |