Extension Switch
Provides a switch to toggle statuses of installed extensions.
Что такое Extension Switch?
Extension Switch - это расширение Chrome, разработанное Goto Hayato, и его основная функция - "Provides a switch to toggle statuses of installed extensions.".
Снимки экрана расширения
Скачать файл CRX расширения Extension Switch
Скачайте файлы расширений Extension Switch в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 :)
Основная информация о расширении
Название | Extension Switch |
ID | gnphfcibcphlpedmaccolafjonmckcdn |
Официальный URL | https://chromewebstore.google.com/detail/extension-switch/gnphfcibcphlpedmaccolafjonmckcdn |
Описание | Provides a switch to toggle statuses of installed extensions. |
Размер файла | 87.12 KB |
Количество установок | 8,136 |
Текущая Версия | 1.6.0 |
Последнее Обновление | 2021-04-15 |
Дата публикации | 2019-09-09 |
Рейтинг | 4.75/5 Всего 73 оценок |
Разработчик | Goto Hayato |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://gotohayato.com/work/chrome-extension-switch/ |
URL страницы помощи | https://github.com/gh640/chrome-extension-extension-switch/issues |
Поддерживаемые языки | 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" ] } |