Check All Scripts with URLVoid

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

Co to jest Check All Scripts with URLVoid?

Check All Scripts with URLVoid to rozszerzenie Chrome opracowane przez hchiam, a jego główną funkcją jest „Check all scripts. With 3 clicks. (Disclaimer: Not an official URLVoid tool. Experimental. Recommended to be used with NoScript.)”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Check All Scripts with URLVoid

Pobierz pliki rozszerzeń Check All Scripts with URLVoid w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Check All Scripts with URLVoid Check All Scripts with URLVoid
ID inehjeemhpipbglglmjnnabcfpofeljm
Oficjalny URL https://chromewebstore.google.com/detail/check-all-scripts-with-ur/inehjeemhpipbglglmjnnabcfpofeljm
Opis Check all scripts. With 3 clicks. (Disclaimer: Not an official URLVoid tool. Experimental. Recommended to be used with NoScript.)
Rozmiar pliku 107 KB
Liczba instalacji 57
Aktualna Wersja 3.0.0
Ostatnia Aktualizacja 2023-12-30
Data Publikacji 2020-07-02
Deweloper hchiam
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/hchiam/urlvoid-firefox-extension
Adres URL Strony Pomocy https://github.com/hchiam/urlvoid-firefox-extension/issues
Obsługiwane Języki 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"
    ]
}