Extension Switch
Provides a switch to toggle statuses of installed extensions.
Extension Switch란 무엇입니까?
Extension Switch은(는) Goto Hayato에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides a switch to toggle statuses of installed extensions."입니다.
확장 프로그램 스크린샷
Extension Switch 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |