JS Toggle

We said no.

JS Toggle क्या है?

JS Toggle js.toggle.2019 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "We said no."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में JS Toggle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A simple toggle for globally enabling / disabling JavaScript. 

I released JS Toggle a little over a year ago and I'm proud to say that I still use it nearly every day. I created this extension because I wanted two things:

* A simple javascript toggle that I could trust not to send my data anywhere, and that does not request unnecessary permissions (i.e. it is not necessary to view the content of a website to prevent it from executing code).

* An aesthetic that wasn't too ugly so I could tolerate the toggle button being visible in my browser menu.

There are similar extensions that are more robust, but I like code that strives to do only a single task without additional bells and whistles. No surprises here - just a simple, unobtrusive switch.                    

एक्सटेंशन की मूल जानकारी

नाम JS Toggle JS Toggle
ID bnhjfamolmolljikdopibpabimjfellc
आधिकारिक URL https://chromewebstore.google.com/detail/js-toggle/bnhjfamolmolljikdopibpabimjfellc
विवरण We said no.
फ़ाइल का आकार 5.48 KB
स्थापना संख्या 182
वर्तमान संस्करण 1.1.4
अंतिम अपडेट 2021-08-13
प्रकाशन तिथि 2020-04-17
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर js.toggle.2019
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Scott A. Ledbetter",
    "name": "JS Toggle",
    "description": "We said no.",
    "permissions": [
        "contentSettings"
    ],
    "version": "1.1.4",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "JS Toggle",
        "default_icon": "images\/start.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    }
}