Esportal Hop-in
Show an alert when a game is available for hop-in
Esportal Hop-inとは何ですか?
Esportal Hop-inはgustavps97によって開発されたChromeの拡張機能で、その主な機能は「Show an alert when a game is available for hop-in」です。
拡張機能のスクリーンショット
Esportal Hop-in拡張機能のCRXファイルをダウンロード
Esportal Hop-in拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Easily join on-going esportal ranked games with custom alerts Do you want to contribute to this extension? The source code is available at GitHub: https://github.com/GustavPS/esportal-hop-in Any contributions are welcome :)
拡張機能の基本情報
名前 | Esportal Hop-in |
ID | ciefpjjlahofahniiajpmpmhljehcndd |
公式URL | https://chromewebstore.google.com/detail/esportal-hop-in/ciefpjjlahofahniiajpmpmhljehcndd |
説明 | Show an alert when a game is available for hop-in |
ファイルサイズ | 31.19 KB |
インストール数 | 35 |
現在のバージョン | 0.0.5 |
最終更新日 | 2022-09-12 |
公開日 | 2022-02-27 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | gustavps97 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | sv |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Esportal Hop-in", "description": "Show an alert when a game is available for hop-in", "version": "0.0.5", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "css": [ "styles.css" ], "js": [ "content.js" ], "matches": [ "https:\/\/esportal.com\/*" ] } ], "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon_16.png", "48": "\/images\/icon_48.png", "128": "\/images\/icon_128.png" } } } |