Extension Switch
Provides a switch to toggle statuses of installed extensions.
Extension Switch là gì?
Extension Switch là một tiện ích mở rộng Chrome được phát triển bởi Goto Hayato, và tính năng chính của nó là "Provides a switch to toggle statuses of installed extensions.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Extension Switch
Tải xuống các tệp mở rộng Extension Switch dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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 :)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Extension Switch |
ID | gnphfcibcphlpedmaccolafjonmckcdn |
URL Chính Thức | https://chromewebstore.google.com/detail/extension-switch/gnphfcibcphlpedmaccolafjonmckcdn |
Mô tả | Provides a switch to toggle statuses of installed extensions. |
Kích Thước Tệp | 87.12 KB |
Số Lần Cài Đặt | 8,136 |
Phiên Bản Hiện Tại | 1.6.0 |
Cập Nhật Lần Cuối | 2021-04-15 |
Ngày Phát Hành | 2019-09-09 |
Đánh Giá | 4.75/5 Tổng số 73 Đánh Giá |
Nhà Phát Triển | Goto Hayato |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://gotohayato.com/work/chrome-extension-switch/ |
URL Trang Trợ Giúp | https://github.com/gh640/chrome-extension-extension-switch/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |