Regex Text Replacer

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

Cos'è Regex Text Replacer?

Regex Text Replacer è un'estensione di Chrome sviluppata da sbreakey, e la sua funzione principale è "Specify regex patterns of text to match and replace in the page.".

Scarica il file CRX dell'estensione Regex Text Replacer

Scarica i file di estensione Regex Text Replacer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
URL Ufficiale https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Descrizione Specify regex patterns of text to match and replace in the page.
Dimensione del File 6.24 KB
Conteggio Installazioni 59
Versione Corrente 0.2
Ultimo Aggiornamento 2014-09-06
Data di Pubblicazione 2014-09-06
Valutazione 2.80/5 Totale 5 Valutazioni
Sviluppatore sbreakey
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}