Global Replace All

A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…

Cos'è Global Replace All?

Global Replace All è un'estensione di Chrome sviluppata da GirkovArpa, e la sua funzione principale è "A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Global Replace All

Scarica i file di estensione Global Replace All 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

                        A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab is loaded.                    

Informazioni di Base sull'Estensione

Nome Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
URL Ufficiale https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Descrizione A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…
Dimensione del File 16.89 KB
Conteggio Installazioni 44
Versione Corrente 0.0.0.2
Ultimo Aggiornamento 2020-10-05
Data di Pubblicazione 2020-06-05
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore GirkovArpa
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/GirkovArpa/global-replace-all/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Global Replace All",
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "version": "0.0.0.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Global Replace All",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}