Regex Text Replacer

Specify regex patterns of text to match and replace in the page.

Co je Regex Text Replacer?

Regex Text Replacer je rozšíření Chrome vyvinuté sbreakey, a jeho hlavní funkcí je „Specify regex patterns of text to match and replace in the page.“.

Stáhnout soubor CRX rozšíření Regex Text Replacer

Stáhněte si soubory rozšíření Regex Text Replacer 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í

                        Specify regular expression patters to match and replace. Only searches text nodes. Runs once DOM is fully loaded, and then monitors the DOM for changes.

Use %s in the replacement text to insert whatever was matched in the replacement.
Use $1, $2, etc to insert the respective matched group.                    

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

Název Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
Oficiální URL https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Popis Specify regex patterns of text to match and replace in the page.
Velikost souboru 6.24 KB
Počet instalací 59
Aktuální Verze 0.2
Poslední Aktualizace 2014-09-06
Datum Vydání 2014-09-06
Hodnocení 2.80/5 Celkem 5 Hodnocení
Vývojář sbreakey
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Text Replacer",
    "description": "Specify regex patterns of text to match and replace in the page.",
    "version": "0.2",
    "permissions": [
        "",
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ]
}