Script Control
Allow or block JavaScript.
What is Script Control?
Script Control is a Chrome extension developed by Kai Nightmode, and its main feature is "Allow or block JavaScript.".
Extension Screenshots
Download Script Control Extension CRX File
Download Script Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
FEATURES • Allow or block JavaScript globally. • Allow or block JavaScript for multiple domains. • Allow or block JavaScript for individual domains. • Light and dark theme preferences. LIMITATIONS Chrome only allows 5000 simple rules (single domain) and 1000 complex rules (multiple domains). If you think you need more rules you may want to try an extension like NoScript or uBlock Origin that may not be using Chrome's new rule based technology. Script Control modifies security headers at low level to allow or block JavaScript. If you are using another security focused extension that is using the same technique, one or both extensions may interfere with each other. PRIVACY Script Control respects your privacy. https://nightmode.fm/software/script-control/privacy DONATE This software may be free but my love of loose leaf tea is not. Donate to support my work and unlock private messages on Ko-fi. https://ko-fi.com/kai_nightmode
Extension Basic Information
Name | Script Control |
ID | lhdjmcedmkdenkgphahlnmkbddhbgeoh |
Official URL | https://chromewebstore.google.com/detail/script-control/lhdjmcedmkdenkgphahlnmkbddhbgeoh |
Description | Allow or block JavaScript. |
File Size | 366 KB |
Installation Count | 144 |
Current Version | 2023.10.24.0 |
Last Updated | 2023-10-26 |
Publish Date | 2021-05-01 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Kai Nightmode |
[email protected] | |
Payment Type | free |
Extension Website | https://nightmode.fm/software/script-control |
Help Page URL | https://ko-fi.com/kai_nightmode |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": { "16": "images\/icon\/status\/status-blue-16.png", "24": "images\/icon\/status\/status-blue-24.png", "32": "images\/icon\/status\/status-blue-32.png", "48": "images\/icon\/status\/status-blue-48.png", "64": "images\/icon\/status\/status-blue-64.png", "96": "images\/icon\/status\/status-blue-96.png", "128": "images\/icon\/status\/status-blue-128.png" }, "default_popup": "page\/light\/dark\/popup.html", "default_title": "Script Control" }, "background": { "service_worker": "background.js" }, "description": "Allow or block JavaScript.", "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "images\/icon\/logo\/logo-dark-16.png", "24": "images\/icon\/logo\/logo-dark-24.png", "32": "images\/icon\/logo\/logo-dark-32.png", "48": "images\/icon\/logo\/logo-dark-48.png", "64": "images\/icon\/logo\/logo-dark-64.png", "96": "images\/icon\/logo\/logo-dark-96.png", "128": "images\/icon\/logo\/logo-dark-128.png" }, "incognito": "spanning", "manifest_version": 3, "minimum_chrome_version": "92", "name": "Script Control", "options_ui": { "open_in_tab": true, "page": "page\/light\/dark\/options.html" }, "permissions": [ "browsingData", "declarativeNetRequest", "declarativeNetRequestFeedback", "scripting", "storage", "tabs" ], "short_name": "S.Control", "version": "2023.10.24.0" } |