Simple JavaScript Toggle
Enable or disable JavaScript on a site-by-site basis.
Simple JavaScript Toggle क्या है?
Simple JavaScript Toggle https://squishythoughts.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enable or disable JavaScript on a site-by-site basis."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Simple JavaScript Toggle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |