Simple JavaScript Toggle
Enable or disable JavaScript on a site-by-site basis.
Simple JavaScript Toggle란 무엇입니까?
Simple JavaScript Toggle은(는) https://squishythoughts.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enable or disable JavaScript on a site-by-site basis."입니다.
확장 프로그램 스크린샷
Simple JavaScript Toggle 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simple JavaScript Toggle adds a button which allows you to control if JavaScript should be allowed to run on the current site or not. Chrome has built-in support for allowing you to configure which sites should be allowed to run JavaScript. You do this on the Chrome settings page, and it works really well for permanently blocking or allowing a site. If you find that you regularly need to change whether to allow or block JavaScript on a site, using the settings page gets impractical. That's where this extension comes in. By clicking on a button in the toolbar, JavaScript is either enabled or disabled for the current site whereupon the page is reloaded.
확장 프로그램 기본 정보
이름 | Simple JavaScript Toggle |
ID | mhidlbegmoiddmebedbiijmpckambgfj |
공식 URL | https://chromewebstore.google.com/detail/simple-javascript-toggle/mhidlbegmoiddmebedbiijmpckambgfj |
설명 | Enable or disable JavaScript on a site-by-site basis. |
파일 크기 | 19.15 KB |
설치 횟수 | 897 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2014-07-20 |
출시 날짜 | 2014-07-20 |
평점 | 3.60/5 총 10 개의 평점 |
개발자 | https://squishythoughts.com |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple JavaScript Toggle", "description": "Enable or disable JavaScript on a site-by-site basis.", "version": "1.0.0", "background": { "persistent": false, "scripts": [ "background.js" ] }, "permissions": [ "tabs", "contentSettings" ], "browser_action": { "default_icon": "icon-off.png", "default_title": "Toggle JavaScript" }, "icons": { "48": "icon48.png", "128": "icon128.png" } } |