Check All Scripts with URLVoid

Check all scripts. With 3 clicks. (Disclaimer: Not an official URLVoid tool. Experimental. Recommended to be used with NoScript.)

Was ist Check All Scripts with URLVoid?

Check All Scripts with URLVoid ist eine Chrome-Erweiterung, die von hchiam entwickelt wurde, und ihr Hauptmerkmal ist "Check all scripts. With 3 clicks. (Disclaimer: Not an official URLVoid tool. Experimental. Recommended to be used with NoScript.)".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Check All Scripts with URLVoid-Erweiterungs-CRX-Datei herunterladen

Laden Sie Check All Scripts with URLVoid-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

                        This is the Chrome version of the Firefox add-on: 
https://addons.mozilla.org/en-CA/firefox/addon/check-all-scripts-with-urlvoid

You can find the source code here: 
https://github.com/hchiam/urlvoid-firefox-extension                    

Grundlegende Informationen zur Erweiterung

Name Check All Scripts with URLVoid Check All Scripts with URLVoid
ID inehjeemhpipbglglmjnnabcfpofeljm
Offizielle URL https://chromewebstore.google.com/detail/check-all-scripts-with-ur/inehjeemhpipbglglmjnnabcfpofeljm
Beschreibung Check all scripts. With 3 clicks. (Disclaimer: Not an official URLVoid tool. Experimental. Recommended to be used with NoScript.)
Dateigröße 107 KB
Installationsanzahl 57
Aktuelle Version 3.0.0
Letztes Update 2023-12-30
Veröffentlichungsdatum 2020-07-02
Entwickler hchiam
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/hchiam/urlvoid-firefox-extension
Hilfeseite URL https://github.com/hchiam/urlvoid-firefox-extension/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Check All Scripts with URLVoid",
    "description": "Check all scripts. With 3 clicks. (Disclaimer: Not an official URLVoid tool. Experimental. Recommended to be used with NoScript.)",
    "version": "3.0.0",
    "homepage_url": "https:\/\/github.com\/hchiam\/urlvoid-firefox-extension",
    "icons": {
        "48": "icon.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "brain.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}