Regex Text Replacer

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

¿Qué es Regex Text Replacer?

Regex Text Replacer es una extensión de Chrome desarrollada por sbreakey, y su función principal es "Specify regex patterns of text to match and replace in the page.".

Descargar Archivo CRX de la Extensión Regex Text Replacer

Descarga archivos de extensión Regex Text Replacer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
URL Oficial https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Descripción Specify regex patterns of text to match and replace in the page.
Tamaño del Archivo 6.24 KB
Cantidad de Instalaciones 59
Versión Actual 0.2
Última Actualización 2014-09-06
Fecha de Publicación 2014-09-06
Calificación 2.80/5 Total de 5 Calificaciones
Desarrollador sbreakey
Tipo de Pago free
Idiomas Soportados 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"
        }
    ]
}