Word Highlighter
This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Co je Word Highlighter?
Word Highlighter je rozšíření Chrome vyvinuté Rafael Almeida, a jeho hlavní funkcí je „This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Word Highlighter
Stáhněte si soubory rozšíření Word Highlighter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter
Základní Informace o Rozšíření
Název | Word Highlighter |
ID | ncjaameocjfjjnjcijikhkhifncjijhn |
Oficiální URL | https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn |
Popis | This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web |
Velikost souboru | 229 KB |
Počet instalací | 826 |
Aktuální Verze | 1.0.2 |
Poslední Aktualizace | 2016-11-27 |
Datum Vydání | 2016-11-27 |
Hodnocení | 2.75/5 Celkem 8 Hodnocení |
Vývojář | Rafael Almeida |
Typ Platby | free |
Podporované Jazyky | 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" ] } ] } |