Regex Text Replacer

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

O que é Regex Text Replacer?

Regex Text Replacer é uma extensão do Chrome desenvolvida por sbreakey, e sua principal característica é "Specify regex patterns of text to match and replace in the page.".

Baixar o arquivo CRX da Extensão Regex Text Replacer

Baixe arquivos de extensão Regex Text Replacer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
URL Oficial https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Descrição Specify regex patterns of text to match and replace in the page.
Tamanho do Arquivo 6.24 KB
Contagem de Instalações 59
Versão Atual 0.2
Última Atualização 2014-09-06
Data de Publicação 2014-09-06
Classificação 2.80/5 Total de 5 Avaliações
Desenvolvedor sbreakey
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}