YoGuardian
Spice up the GoGuardian block page!
YoGuardianとは何ですか?
YoGuardianはhttps://gbasil.devによって開発されたChromeの拡張機能で、その主な機能は「Spice up the GoGuardian block page!」です。
拡張機能のスクリーンショット
YoGuardian拡張機能のCRXファイルをダウンロード
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |