Regex Replace

Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…

O que é Regex Replace?

Regex Replace é uma extensão do Chrome desenvolvida por Code Charity, e sua principal característica é "Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Regex Replace

Baixe arquivos de extensão Regex Replace 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

                        Regex replace. Replace anything on every site. Regex replace anywhere.  Replace HTML.  Use regular expression to Inject html, pictures, css, js scripts, features anywhere

Options:
Apply by Domain, URL, Keyword, Regex (or global)
Bulk edit  (Regex.txt text file)
Regex flags
(Activate/deactive applied regex)
Display applied regex's on page. Copy all matches. 
Chained Regex (Apply a regular expression conditionally only if other Regex's match the page content already)
Negative Look ahead / Positive Look ahead

TESTING VERSION:   
Options to come soon! Which one first? (Please dont down vote just yet)

We are developing distraction free extensions since 2012 for >250000 people https://github.com/ImprovedTube/ImprovedTube                    

Informações Básicas da Extensão

Nome Regex Replace Regex Replace
ID ihcaaefaoebbcklmolaflgllidfamfgm
URL Oficial https://chromewebstore.google.com/detail/regex-replace/ihcaaefaoebbcklmolaflgllidfamfgm
Descrição Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…
Tamanho do Arquivo 203 KB
Contagem de Instalações 577
Versão Atual 1.1
Última Atualização 2020-10-21
Data de Publicação 2020-04-29
Classificação 4.48/5 Total de 33 Avaliações
Desenvolvedor Code Charity
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade http://improvedtube.com/privacy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Replace",
    "version": "1.1",
    "icons": {
        "16": "assets\/icons\/16.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content-scripts.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "linux": "Ctrl+Shift+F",
                "mac": "Command+Shift+F",
                "windows": "Ctrl+Shift+F",
                "chromeos": "Ctrl+Shift+F"
            }
        }
    }
}