YoGuardian
Spice up the GoGuardian block page!
ما هو YoGuardian؟
YoGuardian هو إضافة Chrome تم تطويرها بواسطة https://gbasil.dev، والميزة الرئيسية لها هي "Spice up the GoGuardian block page!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YoGuardian
قم بتنزيل ملفات الامتداد YoGuardian بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } } |