YoGuardian

Spice up the GoGuardian block page!

Cos'è YoGuardian?

YoGuardian è un'estensione di Chrome sviluppata da https://gbasil.dev, e la sua funzione principale è "Spice up the GoGuardian block page!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione YoGuardian

Scarica i file di estensione YoGuardian in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome YoGuardian YoGuardian
ID pendegaachdjgbomenkecildigedgidm
URL Ufficiale https://chromewebstore.google.com/detail/yoguardian/pendegaachdjgbomenkecildigedgidm
Descrizione Spice up the GoGuardian block page!
Dimensione del File 2.18 MB
Conteggio Installazioni 1,184
Versione Corrente 1.1
Ultimo Aggiornamento 2021-11-03
Data di Pubblicazione 2021-02-13
Valutazione 4.29/5 Totale 7 Valutazioni
Sviluppatore https://gbasil.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://gbasil.dev
Lingue Supportate 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"
    }
}