Regex Text Replacer

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

Qu'est-ce que Regex Text Replacer ?

Regex Text Replacer est une extension Chrome développée par sbreakey, et sa fonction principale est "Specify regex patterns of text to match and replace in the page.".

Télécharger le fichier CRX de l'extension Regex Text Replacer

Téléchargez les fichiers d'extension Regex Text Replacer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
URL Officiel https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Description Specify regex patterns of text to match and replace in the page.
Taille du Fichier 6.24 KB
Nombre d'Installations 59
Version Actuelle 0.2
Dernière Mise à Jour 2014-09-06
Date de Publication 2014-09-06
Évaluation 2.80/5 Total 5 Évaluations
Développeur sbreakey
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}