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" ] } |