Extension Switch
Provides a switch to toggle statuses of installed extensions.
Co to jest Extension Switch?
Extension Switch to rozszerzenie Chrome opracowane przez Goto Hayato, a jego główną funkcją jest „Provides a switch to toggle statuses of installed extensions.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Extension Switch
Pobierz pliki rozszerzeń Extension Switch 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
This is an extension to switch on/off installed extensions quickly. You just have to click the name of the extension you want to toggle. This extension has that simple function and is as small as possible. This is useful especially for developers and people who make use of many extensions. Thank you for kind reviews. The developer reads all the reviews :)
Podstawowe informacje o rozszerzeniu
Nazwa | Extension Switch |
ID | gnphfcibcphlpedmaccolafjonmckcdn |
Oficjalny URL | https://chromewebstore.google.com/detail/extension-switch/gnphfcibcphlpedmaccolafjonmckcdn |
Opis | Provides a switch to toggle statuses of installed extensions. |
Rozmiar pliku | 87.12 KB |
Liczba instalacji | 8,136 |
Aktualna Wersja | 1.6.0 |
Ostatnia Aktualizacja | 2021-04-15 |
Data Publikacji | 2019-09-09 |
Ocena | 4.75/5 Łącznie 73 Oceny |
Deweloper | Goto Hayato |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://gotohayato.com/work/chrome-extension-switch/ |
Adres URL Strony Pomocy | https://github.com/gh640/chrome-extension-extension-switch/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Extension Switch", "short_name": "Extension Switch", "description": "Provides a switch to toggle statuses of installed extensions.", "version": "1.6.0", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "icons": { "19": "images\/icon19.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "default_title": "Click to switch extensions", "default_popup": "html\/popup.html" }, "options_ui": { "page": "html\/options.html" }, "background": { "scripts": [ "scripts\/update.js" ], "persistent": false }, "permissions": [ "management", "storage", "notifications" ] } |