Regex Search
use regex in serach web page
What is Regex Search?
Regex Search is a Chrome extension developed by HYC, and its main feature is "use regex in serach web page".
Extension Screenshots
Download Regex Search Extension CRX File
Download Regex Search 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
Use regex in web page. hotkey: open search : ctrl+shift+f next item : enter previous item : ctrl + enter
Extension Basic Information
Name | Regex Search |
ID | ohfenejoomibdainpdidldhgmpoggnfg |
Official URL | https://chromewebstore.google.com/detail/regex-search/ohfenejoomibdainpdidldhgmpoggnfg |
Description | use regex in serach web page |
File Size | 49.41 KB |
Installation Count | 27 |
Current Version | 1.1 |
Last Updated | 2019-09-03 |
Publish Date | 2019-09-03 |
Rating | 5.00/5 Total 2 Ratings |
Developer | HYC |
[email protected] | |
Payment Type | free |
Supported Languages | zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Regex Search", "description": "use regex in serach web page", "version": "1.1", "permissions": [ "storage", "activeTab", "tabs", "declarativeContent", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "Regex Search", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/background.css" ], "js": [ "js\/jquery-1.9.0.min.js", "js\/jquery.mark.min.js", "js\/background.js" ] } ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+F", "windows": "Ctrl+Shift+F", "mac": "Ctrl+Shift+F" } } }, "manifest_version": 2 } |