Reg Search

Allows to search the DOM elements of a web page with regular expressions.

What is Reg Search?

Reg Search is a Chrome extension developed by SFerrazLeite, and its main feature is "Allows to search the DOM elements of a web page with regular expressions.".

Extension Screenshots

screenshot

Download Reg Search Extension CRX File

Download Reg 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

                        Allows to search the DOM elements of a web page with regular expressions.                    

Extension Basic Information

Name Reg Search Reg Search
ID ndnhmbfdiponmfjppfblcmbkcmjoibpf
Official URL https://chromewebstore.google.com/detail/reg-search/ndnhmbfdiponmfjppfblcmbkcmjoibpf
Description Allows to search the DOM elements of a web page with regular expressions.
File Size 82.07 KB
Installation Count 63
Current Version 1.0
Last Updated 2016-03-11
Publish Date 2016-03-11
Rating 4.00/5 Total 1 Ratings
Developer SFerrazLeite
Email [email protected]
Payment Type free
Extension Website https://github.com/SFerrazLeite/reg-search
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "eventPage\/eventPage.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        },
        "next": {
            "description": "Go to the next search result",
            "suggested_key": {
                "default": "Alt+N"
            }
        },
        "prev": {
            "description": "Go to the previous search result",
            "suggested_key": {
                "default": "Alt+P"
            }
        },
        "copy": {
            "description": "Copy search results as JSON array to clip board",
            "suggested_key": {
                "default": "Alt+C"
            }
        }
    },
    "content_scripts": [
        {
            "css": [
                "content\/content.css"
            ],
            "js": [
                "content\/jquery.min.js",
                "content\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png"
    },
    "manifest_version": 2,
    "name": "Reg Search",
    "options_page": "options\/options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "clipboardWrite"
    ],
    "version": "1.0"
}