Simple Word Highlighter
This extension highlights words on a webpage as specified by the user
What is Simple Word Highlighter?
Simple Word Highlighter is a Chrome extension developed by berdinemail, and its main feature is "This extension highlights words on a webpage as specified by the user".
Extension Screenshots
Download Simple Word Highlighter Extension CRX File
Download Simple 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
This extension allows you highlight words on any website. You can specify which websites to run on You can specify which words to highlight per page You can specify which color you would like to highlight with
Extension Basic Information
Name | |
ID | ojmcbcojgmdcdmnidlgjjajoniomibdj |
Official URL | https://chrome.google.com/webstore/detail/simple-word-highlighter/ojmcbcojgmdcdmnidlgjjajoniomibdj |
Description | This extension highlights words on a webpage as specified by the user |
File Size | 103 KB |
Installation Count | 926 |
Current Version | 1.0 |
Last Updated | 2014-10-24 |
Publish Date | 2014-10-24 |
Rating | 3.89/5 Total 9 Ratings |
Developer | berdinemail |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Word Highlighter", "description": "This extension highlights words on a webpage as specified by the user", "version": "1.0", "background": { "scripts": [ "Configure.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.min.js", "ModifyPage.js" ], "css": [ "Highlight.css" ], "all_frames": true } ], "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ] } |