Regex search

Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form

What is Regex search?

Regex search is a Chrome extension developed by Zudwa, and its main feature is "Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form".

Extension Screenshots

screenshot

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

                        This extension allows to search on page using regular expression pattern.

Use CTRL+SHIFT+F shortcut to open search box.                    

Extension Basic Information

Name Regex search Regex search
ID bjfgihoefmkcaiipaddgpcljkjbaomfk
Official URL https://chromewebstore.google.com/detail/regex-search/bjfgihoefmkcaiipaddgpcljkjbaomfk
Description Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form
File Size 13.34 KB
Installation Count 236
Current Version 1.1
Last Updated 2016-02-25
Publish Date 2016-02-25
Rating 3.40/5 Total 5 Ratings
Developer Zudwa
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex search",
    "short_name": "Search on page using regular expression",
    "version": "1.1",
    "description": "Allows to search on page using regular expression pattern.\n\nUse CTRL+SHIFT+F hotkey to open search form",
    "icons": {
        "16": "img\/loupe-icon-16.png",
        "48": "img\/loupe-icon-48.png",
        "128": "img\/loupe-icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/loupe-icon-19.png",
            "38": "img\/loupe-icon-38.png"
        },
        "default_popup": "search-box.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+F",
                "mac": "Command+Shift+F",
                "chromeos": "Ctrl+Shift+F",
                "linux": "Ctrl+Shift+F"
            }
        }
    }
}