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 |
官方網址 | 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 |
電子郵箱 | [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" } } } |