RegEx Highlighter
Hilight text on any webpage using regular expressions
What is RegEx Highlighter?
RegEx Highlighter is a Chrome extension developed by swellsdev, and its main feature is "Hilight text on any webpage using regular expressions".
Extension Screenshots
Download RegEx Highlighter Extension CRX File
Download RegEx 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
Want to persistently highlight text on webpages using Regular Expressions? Try Regular Expression Highlighter!
Extension Basic Information
Name | |
ID | fflhnegnapfabeeoanbnmhkengiabffb |
Official URL | https://chrome.google.com/webstore/detail/regex-highlighter/fflhnegnapfabeeoanbnmhkengiabffb |
Description | Hilight text on any webpage using regular expressions |
File Size | 41.83 KB |
Installation Count | 317 |
Current Version | 1.0 |
Last Updated | 2014-10-31 |
Publish Date | 2014-10-31 |
Rating | 3.25/5 Total 12 Ratings |
Developer | swellsdev |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RegEx Highlighter", "description": "Hilight text on any webpage using regular expressions", "version": "1.0", "permissions": [ "activeTab", "storage" ], "options_page": "options.html", "browser_action": { "default_icon": "icon.png", "default_title": "RegEx Highlight!", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "jquery.js", "background.js", "highlightRegex.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "manifest_version": 2 } |