Regex Text Replacer

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

Was ist Regex Text Replacer?

Regex Text Replacer ist eine Chrome-Erweiterung, die von sbreakey entwickelt wurde, und ihr Hauptmerkmal ist "Specify regex patterns of text to match and replace in the page.".

Regex Text Replacer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Regex Text Replacer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
Offizielle URL https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Beschreibung Specify regex patterns of text to match and replace in the page.
Dateigröße 6.24 KB
Installationsanzahl 59
Aktuelle Version 0.2
Letztes Update 2014-09-06
Veröffentlichungsdatum 2014-09-06
Bewertung 2.80/5 Insgesamt 5 Bewertungen
Entwickler sbreakey
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}