Word Highlighter
This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
What is Word Highlighter?
Word Highlighter is a Chrome extension developed by Rafael Almeida, and its main feature is "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".
Extension Screenshots
Download Word Highlighter Extension CRX File
Download Word Highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter
Extension Basic Information
Name | Word Highlighter |
ID | ncjaameocjfjjnjcijikhkhifncjijhn |
Official URL | 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 |
File Size | 229 KB |
Installation Count | 826 |
Current Version | 1.0.2 |
Last Updated | 2016-11-27 |
Publish Date | 2016-11-27 |
Rating | 2.75/5 Total 8 Ratings |
Developer | Rafael Almeida |
Payment Type | free |
Supported Languages | 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" ] } ] } |