YoGuardian

Spice up the GoGuardian block page!

Was ist YoGuardian?

YoGuardian ist eine Chrome-Erweiterung, die von https://gbasil.dev entwickelt wurde, und ihr Hauptmerkmal ist "Spice up the GoGuardian block page!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

YoGuardian-Erweiterungs-CRX-Datei herunterladen

Laden Sie YoGuardian-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

                        Inspired by the NoGuardian chrome extension, YoGuardian intends to make the default, boring GoGuardian block page look more appealing to everyone. Featuring 10+ different visual styles, YoGuardian makes being safe on the internet more enjoyable.

Changelog:
1.1
- 🔧 Updated manifest version
- 🔥 Removed debug panel (it wasn't very useful, trust me)
- 🐛 Fixed the popup not working
1.0
- 🎉 Initial release                    

Grundlegende Informationen zur Erweiterung

Name YoGuardian YoGuardian
ID pendegaachdjgbomenkecildigedgidm
Offizielle URL https://chromewebstore.google.com/detail/yoguardian/pendegaachdjgbomenkecildigedgidm
Beschreibung Spice up the GoGuardian block page!
Dateigröße 2.18 MB
Installationsanzahl 1,184
Aktuelle Version 1.1
Letztes Update 2021-11-03
Veröffentlichungsdatum 2021-02-13
Bewertung 4.29/5 Insgesamt 7 Bewertungen
Entwickler https://gbasil.dev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://gbasil.dev
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YoGuardian",
    "description": "Spice up the GoGuardian block page!",
    "version": "1.1",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/blocked.com-default.ws\/*",
                "https:\/\/blocked.com-default.ws\/*"
            ],
            "js": [
                "jquery.min.js",
                "styles.js",
                "run.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "debug\/*",
                "styles.json",
                "OpenSans-Bold.ttf",
                "debug.html",
                "jquery.min.js"
            ],
            "matches": [
                "https:\/\/blocked.com-default.ws\/*"
            ]
        },
        {
            "resources": [
                "images\/*",
                "debug\/*",
                "styles.json",
                "OpenSans-Bold.ttf",
                "debug.html",
                "jquery.min.js"
            ],
            "matches": [
                "http:\/\/blocked.com-default.ws\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo\/icon16.png",
        "48": "logo\/icon48.png",
        "128": "logo\/icon128.png"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    }
}