Highlight tool
Highlight tool with jumps and Regex
What is Highlight tool?
Highlight tool is a Chrome extension developed by Utopia, and its main feature is "Highlight tool with jumps and Regex".
Extension Screenshots
Download Highlight tool Extension CRX File
Download Highlight tool 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
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. Extension Basic Information
| Name | |
| ID | bocgmaooafgikalnonpaccinefpncobc |
| Official URL | https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc |
| Description | Highlight tool with jumps and Regex |
| File Size | 209 KB |
| Installation Count | 3,000 |
| Current Version | 0.0.6 |
| Last Updated | 2017-02-14 |
| Publish Date | 2017-02-14 |
| Rating | 4.00/5 Total 5 Ratings |
| Developer | Utopia |
| [email protected] | |
| Payment Type | free |
| Supported Languages | 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"
]
} | |