Word Highlighter
This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Qu'est-ce que Word Highlighter ?
Word Highlighter est une extension Chrome développée par Rafael Almeida, et sa fonction principale est "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Word Highlighter
Téléchargez les fichiers d'extension Word Highlighter 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
The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter
Informations de Base sur l'Extension
Nom | Word Highlighter |
ID | ncjaameocjfjjnjcijikhkhifncjijhn |
URL Officiel | https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn |
Description | This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web |
Taille du Fichier | 229 KB |
Nombre d'Installations | 826 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2016-11-27 |
Date de Publication | 2016-11-27 |
Évaluation | 2.75/5 Total 8 Évaluations |
Développeur | Rafael Almeida |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Highlighter", "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web", "version": "1.0.2", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "html\/popup.html" }, "permissions": [ "storage", "contextMenus" ], "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.js", "js\/content.js" ] } ] } |