Regex Text Replacer

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

Wat is Regex Text Replacer?

Regex Text Replacer is een Chrome-extensie ontwikkeld door sbreakey, en de belangrijkste functie is "Specify regex patterns of text to match and replace in the page.".

Download het CRX-bestand van de extensie Regex Text Replacer

Download Regex Text Replacer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
Officiële URL https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Beschrijving Specify regex patterns of text to match and replace in the page.
Bestandsgrootte 6.24 KB
Aantal Installaties 59
Huidige Versie 0.2
Laatst Bijgewerkt 2014-09-06
Publicatiedatum 2014-09-06
Beoordeling 2.80/5 Totaal 5 Beoordelingen
Ontwikkelaar sbreakey
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}