JavaScript Toggle On and Off

Toggle JavaScript engines (inline, data URL, remote, and external) on and off the easy way

JavaScript Toggle On and Off란 무엇입니까?

JavaScript Toggle On and Off은(는) tlintspr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Toggle JavaScript engines (inline, data URL, remote, and external) on and off the easy way"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

JavaScript Toggle On and Off 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The "JavaScript Toggle On and Off" extension provides a reliable method to switch JavaScript execution. 

After installation, you can still run JavaScript. Whenever you need to block, click on the action button.

Exception Lists:
The domains listed will allow JS execution, even when it is globally forbidden or vice versa. 

Auto Reload:
The extension auto-refreshes the current tab after the JavaScript execution state changes. This is a forced refresh to bypass browser caches (similar to pressing Shift + F5 keyboard combination).

Supported Types:
1. Inline JavaScript on top and frame elements
2. Data URI JavaScript on top and frame elements
3. External JavaScript on top and frame elements
4. Inline events
5. "javascript:" URIs
6. setTimeout evaluation
7. "document.write" execution

Notes:
By default, the extension is not available in incognito mode. Activate it by opening the extensions manager page (chrome://extensions) and checking the "Allow in incognito" option.                    

확장 프로그램 기본 정보

이름 JavaScript Toggle On and Off JavaScript Toggle On and Off
ID cdcgbgnfhhdmdkallfmlachogpghifgf
공식 URL https://chromewebstore.google.com/detail/javascript-toggle-on-and/cdcgbgnfhhdmdkallfmlachogpghifgf
설명 Toggle JavaScript engines (inline, data URL, remote, and external) on and off the easy way
파일 크기 89.35 KB
설치 횟수 9,317
현재 버전 0.3.4
최근 업데이트 2023-06-27
출시 날짜 2019-07-07
평점 4.55/5 총 20 개의 평점
개발자 tlintspr
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://webextension.org/listing/javascript-toggler.html
도움말 페이지 URL https://webextension.org/listing/javascript-toggler.html
지원되는 언어 de,en,fr,nl,da,et,hu,fi,cs,el,bg,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JavaScript Toggle On and Off",
    "description": "__MSG_app_description__",
    "version": "0.3.4",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "storage",
        "contentSettings",
        "contextMenus",
        "activeTab",
        "notifications",
        "declarativeContent"
    ],
    "action": [],
    "background": {
        "service_worker": "worker.js"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/javascript-toggler.html",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "options_ui": {
        "page": "data\/options\/index.html"
    },
    "commands": {
        "_execute_action": []
    }
}