Regex Checker

This extension uses regular expressions to find important elements on webpages.

What is Regex Checker?

Regex Checker is a Chrome extension developed by Unknown, and its main feature is "This extension uses regular expressions to find important elements on webpages.".

Extension Screenshots

screenshot
screenshot

Download Regex Checker Extension CRX File

Download Regex Checker 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

                        Regex Checker uses regular expressions to find important elements on webpages.
The extension finds important text on webpages and highlights.

There are 2 modes of operation: manual and automatic.

Automatic:
- In automatic mode, a list of default regular expressions are used to parse the page and highlight important elements.
- The user can add or remove expressions from the current search criteria.

Manual:
- In manual mode, the user enters a custom regular expression along with flags.                    

Extension Basic Information

Name Regex Checker Regex Checker
ID gkcnkoebkkppbapcjifgokmpcflfhbde
Official URL https://chromewebstore.google.com/detail/regex-checker/gkcnkoebkkppbapcjifgokmpcflfhbde
Description This extension uses regular expressions to find important elements on webpages.
File Size 88.1 KB
Installation Count 89
Current Version 0.0.0.1
Last Updated 2017-12-09
Publish Date 2017-12-09
Rating 5.00/5 Total 1 Ratings
Developer Unknown
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Checker",
    "description": "This extension uses regular expressions to find important elements on webpages.",
    "version": "0.0.0.1",
    "browser_action": {
        "default_icon": "img\/iconstar.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "lib\/jquery-3.2.1.js",
                "js\/searchFunction.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}