YoGuardian

Spice up the GoGuardian block page!

YoGuardian क्या है?

YoGuardian https://gbasil.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Spice up the GoGuardian block page!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YoGuardian एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम YoGuardian YoGuardian
ID pendegaachdjgbomenkecildigedgidm
आधिकारिक URL https://chromewebstore.google.com/detail/yoguardian/pendegaachdjgbomenkecildigedgidm
विवरण Spice up the GoGuardian block page!
फ़ाइल का आकार 2.18 MB
स्थापना संख्या 1,184
वर्तमान संस्करण 1.1
अंतिम अपडेट 2021-11-03
प्रकाशन तिथि 2021-02-13
रेटिंग 4.29/5 कुल 7 रेटिंग्स
डेवलपर https://gbasil.dev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://gbasil.dev
समर्थित भाषाएँ 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"
    }
}