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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |