Regex Text Replacer

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

Co to jest Regex Text Replacer?

Regex Text Replacer to rozszerzenie Chrome opracowane przez sbreakey, a jego główną funkcją jest „Specify regex patterns of text to match and replace in the page.”.

Pobierz plik CRX rozszerzenia Regex Text Replacer

Pobierz pliki rozszerzeń Regex Text Replacer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
Oficjalny URL https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Opis Specify regex patterns of text to match and replace in the page.
Rozmiar pliku 6.24 KB
Liczba instalacji 59
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2014-09-06
Data Publikacji 2014-09-06
Ocena 2.80/5 Łącznie 5 Oceny
Deweloper sbreakey
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}