Extension Manager

Extension that manages other extensions

Co to jest Extension Manager?

Extension Manager to rozszerzenie Chrome opracowane przez Dummybug Studios, a jego główną funkcją jest „Extension that manages other extensions”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Extension Manager

Pobierz pliki rozszerzeń Extension Manager 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

                        If you have tons of extensions but don't want to leave them all on at the same time - this extension is for you. You can use this to turn them on and off.

Ctrl+L is the default keybinding to open the popup
Move with arrow keys
Press enter to turn toggle extensions on and off

This is mostly for personal use but if you find it useful as well then great :)                    

Podstawowe informacje o rozszerzeniu

Nazwa Extension Manager Extension Manager
ID baamgahfpefickjomejmemkejkeglaek
Oficjalny URL https://chromewebstore.google.com/detail/extension-manager/baamgahfpefickjomejmemkejkeglaek
Opis Extension that manages other extensions
Rozmiar pliku 38.61 KB
Liczba instalacji 969
Aktualna Wersja 0.0.0.2
Ostatnia Aktualizacja 2022-10-17
Data Publikacji 2018-11-18
Ocena 4.45/5 Łącznie 11 Oceny
Deweloper Dummybug Studios
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/DummybugStudios/ExtensionEnabler
Adres URL Strony Pomocy https://github.com/DummybugStudios/ExtensionEnabler/issues
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Extension Manager",
    "description": "Extension that manages other extensions",
    "version": "0.0.0.2",
    "action": {
        "default_popup": "popup.html",
        "default_script": "popup.js"
    },
    "permissions": [
        "management"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+L"
            }
        }
    }
}