Regex Replace

A regex engine to handle basic regular expressions on all viewed pages.

Cos'è Regex Replace?

Regex Replace è un'estensione di Chrome sviluppata da Jack Kingsman, e la sua funzione principale è "A regex engine to handle basic regular expressions on all viewed pages.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Regex Replace

Scarica i file di estensione Regex Replace in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Whether you want to consolidate your cloud-to-butt and your xkcd inspired s/keyboard/leopard extensions, or just do a simple regex replace on all pages, this extension is for you.

With a quick engine that doesn't interrupt page display and an easy way to add new expressions, Regex Replace is what you need to do fast and easy regex replacements on every page you see.                    

Informazioni di Base sull'Estensione

Nome Regex Replace Regex Replace
ID eggkcpojddgjkakokkdhocbjebhgkonb
URL Ufficiale https://chromewebstore.google.com/detail/regex-replace/eggkcpojddgjkakokkdhocbjebhgkonb
Descrizione A regex engine to handle basic regular expressions on all viewed pages.
Dimensione del File 165 KB
Conteggio Installazioni 1,778
Versione Corrente 0.0.5
Ultimo Aggiornamento 2023-12-11
Data di Pubblicazione 2019-04-11
Valutazione 4.27/5 Totale 22 Valutazioni
Sviluppatore Jack Kingsman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jkingsman/regex-replace/issues
URL della Pagina di Aiuto https://github.com/jkingsman/regex-replace/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Regex Replace",
    "version": "0.0.5",
    "description": "A regex engine to handle basic regular expressions on all viewed pages.",
    "browser_action": {
        "default_title": "Regex Replace Options",
        "default_icon": {
            "19": "img\/gear19.png",
            "38": "img\/gear38.png"
        },
        "default_popup": "html\/main.html"
    },
    "author": "Jack Kingsman ",
    "icons": {
        "16": "img\/gear16.png",
        "48": "img\/gear48.png",
        "128": "img\/gear128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "html\/options.html",
    "permissions": [
        "storage"
    ]
}