Regular Expression Search

Search using Regular Expression.

What is Regular Expression Search?

Regular Expression Search is a Chrome extension developed by penguinshunya, and its main feature is "Search using Regular Expression.".

Extension Screenshots

screenshot
screenshot

Download Regular Expression Search Extension CRX File

Download Regular Expression 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

                        - instant search
- case-sensitive/case-insensitive
- select search history using up/down key
- choice marker color                    

Extension Basic Information

Name Regular Expression Search Regular Expression Search
ID mjhoonbmfplgchoobbcjggndgdbomdhl
Official URL https://chromewebstore.google.com/detail/regular-expression-search/mjhoonbmfplgchoobbcjggndgdbomdhl
Description Search using Regular Expression.
File Size 2.12 MB
Installation Count 745
Current Version 2.5.4.10
Last Updated 2019-09-26
Publish Date 2019-09-26
Rating 4.44/5 Total 9 Ratings
Developer penguinshunya
Email [email protected]
Payment Type free
Help Page URL https://twitter.com/penguinshunya
Supported Languages en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regular Expression Search",
    "short_name": "regex search",
    "version": "2.5.4.10",
    "description": "__MSG_description__",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F"
            }
        }
    },
    "icons": {
        "16": "image\/icon16.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/page.bundle.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "option.html",
        "open_in_tab": false
    },
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*\/*"
    ],
    "default_locale": "en",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}