Esportal Helper
Adds aggregated team win ratio to match lobby and summary page to make ban decisions easier.
什麼是Esportal Helper?
Esportal Helper是由callebstrom開發的Chrome擴展程式,該擴展的主要功能是“Adds aggregated team win ratio to match lobby and summary page to make ban decisions easier.”。
擴展截圖
下載Esportal Helper擴展crx文件
下載Esportal Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Adds aggregated team win ratio to match lobby and summary page to make ban decisions easier. This plugin is not associated with or endorsed by, or in any way officially connected with Esportal (https://esportal.com).
擴展基本資訊
名稱 | Esportal Helper |
ID | gifenppiepcjfeaklgeeilihnchdnend |
官方網址 | https://chromewebstore.google.com/detail/esportal-helper/gifenppiepcjfeaklgeeilihnchdnend |
簡介 | Adds aggregated team win ratio to match lobby and summary page to make ban decisions easier. |
檔案大小 | 1.26 MB |
安裝次數 | 167 |
目前版本 | 0.0.2 |
更新時間 | 2020-08-28 |
上架時間 | 2020-08-24 |
開發者 | callebstrom |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Esportal Helper", "version": "0.0.2", "manifest_version": 2, "description": "Adds aggregated team win ratio to match lobby and summary page to make ban decisions easier.", "homepage_url": "https:\/\/www.esportal.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "options_page": "src\/options_custom\/index.html", "page_action": { "default_icon": "icons\/icon19.png", "default_title": "page action demo", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "https:\/\/esportal.com\/*" ], "web_accessible_resources": [ "src\/inject\/main.js", "src\/inject\/app.js", "src\/inject\/user.js", "src\/inject\/statistics.js", "src\/inject\/util.js", "src\/inject\/app\/build\/static\/js\/*.js" ], "content_scripts": [ { "matches": [ "https:\/\/esportal.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/esportal.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |