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 to jest Global Replace All?

Global Replace All to rozszerzenie Chrome opracowane przez GirkovArpa, a jego główną funkcją jest „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…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Global Replace All

Pobierz pliki rozszerzeń Global Replace All w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
Oficjalny URL https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Opis 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…
Rozmiar pliku 16.89 KB
Liczba instalacji 44
Aktualna Wersja 0.0.0.2
Ostatnia Aktualizacja 2020-10-05
Data Publikacji 2020-06-05
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper GirkovArpa
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/GirkovArpa/global-replace-all/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}