Regex Checker

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

Co je Regex Checker?

Regex Checker je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This extension uses regular expressions to find important elements on webpages.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Regex Checker

Stáhněte si soubory rozšíření Regex Checker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Regex Checker Regex Checker
ID gkcnkoebkkppbapcjifgokmpcflfhbde
Oficiální URL https://chromewebstore.google.com/detail/regex-checker/gkcnkoebkkppbapcjifgokmpcflfhbde
Popis This extension uses regular expressions to find important elements on webpages.
Velikost souboru 88.1 KB
Počet instalací 89
Aktuální Verze 0.0.0.1
Poslední Aktualizace 2017-12-09
Datum Vydání 2017-12-09
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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"
    ]
}