Start.gg Plus
Improvements to start.gg!
Start.gg Plusとは何ですか?
Start.gg Plusはcheesypotatodevによって開発されたChromeの拡張機能で、その主な機能は「Improvements to start.gg!」です。
拡張機能のスクリーンショット
Start.gg Plus拡張機能のCRXファイルをダウンロード
Start.gg Plus拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
New features for the start.gg website! (recently renamed from smash.gg) - Dark theme! Handcrafted for every page on the site, settings synced to your Google account - Seed displays under all player names! - Shortcut buttons to view your matches in bracket And more to come! This extension is still in development, if you have ideas or feature requests please let me know at [email protected]
拡張機能の基本情報
名前 | Start.gg Plus |
ID | kpleddnadkfgfedphhciepmdlfehkgod |
公式URL | https://chromewebstore.google.com/detail/startgg-plus/kpleddnadkfgfedphhciepmdlfehkgod |
説明 | Improvements to start.gg! |
ファイルサイズ | 15.27 KB |
インストール数 | 961 |
現在のバージョン | 1.4.1 |
最終更新日 | 2022-08-17 |
公開日 | 2022-01-06 |
評価 | 4.67/5 合計 6 レビュー |
開発者 | cheesypotatodev |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Start.gg Plus", "description": "Improvements to start.gg!", "version": "1.4.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "webRequest", "storage", "scripting", "activeTab" ], "host_permissions": [ "https:\/\/www.start.gg\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" } }, "icons": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.start.gg\/*" ], "js": [ "content-script.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "style.css" ], "matches": [ "https:\/\/www.start.gg\/*" ] } ] } |