Javascript Toggle
A really simple, clean and lightweight extension for toggling the Javascript setting on any page.
Javascript Toggle란 무엇입니까?
Javascript Toggle은(는) Kai Yuan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A really simple, clean and lightweight extension for toggling the Javascript setting on any page."입니다.
확장 프로그램 스크린샷
Javascript Toggle 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Just press Ctrl+I on Windows/Linux or Cmd + J on Mac, or click on the extension icon to toggle the Javascript setting for the page in the current tab. Do you prefer to review and compile the code yourself? No problem, the code is open-sourced at https://github.com/thngkaiyuan/js-toggle/tree/master.
확장 프로그램 기본 정보
이름 | Javascript Toggle |
ID | mdjbjncpgebfmegaljihajkedlaajeja |
공식 URL | https://chromewebstore.google.com/detail/javascript-toggle/mdjbjncpgebfmegaljihajkedlaajeja |
설명 | A really simple, clean and lightweight extension for toggling the Javascript setting on any page. |
파일 크기 | 39.36 KB |
설치 횟수 | 232 |
현재 버전 | 1.5 |
최근 업데이트 | 2019-05-04 |
출시 날짜 | 2019-05-04 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Kai Yuan |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/thngkaiyuan/js-toggle/tree/master |
도움말 페이지 URL | https://github.com/thngkaiyuan/js-toggle/tree/master |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Javascript Toggle", "version": "1.5", "description": "A really simple, clean and lightweight extension for toggling the Javascript setting on any page.", "permissions": [ "tabs", "contentSettings" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "toggle-js": { "suggested_key": { "default": "Ctrl+I", "mac": "Command+J" }, "description": "Toggle the Javascript setting on this page." } }, "icons": { "16": "images\/allow-16.png", "32": "images\/allow-32.png", "48": "images\/allow-48.png" }, "browser_action": { "default_icon": { "16": "images\/allow-16.png", "32": "images\/allow-32.png", "48": "images\/allow-48.png" }, "default_title": "Toggle the Javascript setting on any page with ease." }, "manifest_version": 2 } |