JS Toggle

We said no.

Was ist JS Toggle?

JS Toggle ist eine Chrome-Erweiterung, die von js.toggle.2019 entwickelt wurde, und ihr Hauptmerkmal ist "We said no.".

Erweiterungsscreenshots

screenshot
screenshot

JS Toggle-Erweiterungs-CRX-Datei herunterladen

Laden Sie JS Toggle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name JS Toggle JS Toggle
ID bnhjfamolmolljikdopibpabimjfellc
Offizielle URL https://chromewebstore.google.com/detail/js-toggle/bnhjfamolmolljikdopibpabimjfellc
Beschreibung We said no.
Dateigröße 5.48 KB
Installationsanzahl 182
Aktuelle Version 1.1.4
Letztes Update 2021-08-13
Veröffentlichungsdatum 2020-04-17
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler js.toggle.2019
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}