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…

Co je Global Replace All?

Global Replace All je rozšíření Chrome vyvinuté GirkovArpa, a jeho hlavní funkcí je „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…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Global Replace All

Stáhněte si soubory rozšíření Global Replace All ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
Oficiální URL https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Popis 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…
Velikost souboru 16.89 KB
Počet instalací 44
Aktuální Verze 0.0.0.2
Poslední Aktualizace 2020-10-05
Datum Vydání 2020-06-05
Hodnocení 3.00/5 Celkem 2 Hodnocení
Vývojář GirkovArpa
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/GirkovArpa/global-replace-all/issues
Podporované Jazyky 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"
            ]
        }
    ]
}