YoGuardian
Spice up the GoGuardian block page!
Wat is YoGuardian?
YoGuardian is een Chrome-extensie ontwikkeld door https://gbasil.dev, en de belangrijkste functie is "Spice up the GoGuardian block page!".
Extensie Screenshots
Download het CRX-bestand van de extensie YoGuardian
Download YoGuardian-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | YoGuardian |
ID | pendegaachdjgbomenkecildigedgidm |
Officiële URL | https://chromewebstore.google.com/detail/yoguardian/pendegaachdjgbomenkecildigedgidm |
Beschrijving | Spice up the GoGuardian block page! |
Bestandsgrootte | 2.18 MB |
Aantal Installaties | 1,184 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2021-11-03 |
Publicatiedatum | 2021-02-13 |
Beoordeling | 4.29/5 Totaal 7 Beoordelingen |
Ontwikkelaar | https://gbasil.dev |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://gbasil.dev |
Ondersteunde Talen | 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" } } |