ESEA Ranks
Shows player ranks & MMR on match pages
什麼是ESEA Ranks?
ESEA Ranks是由hleV開發的Chrome擴展程式,該擴展的主要功能是“Shows player ranks & MMR on match pages”。
擴展截圖
下載ESEA Ranks擴展crx文件
下載ESEA Ranks擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension adds Rank and MMR columns to the stats table in ESEA match pages.
If you find this useful, you are welcome to donate via PayPal:
https://paypal.me/hleVqq
Enjoy :) 擴展基本資訊
| 名稱 | |
| ID | aojbflicmonbdpdafocjbmfgogcflnnl |
| 官方網址 | https://chromewebstore.google.com/detail/esea-ranks/aojbflicmonbdpdafocjbmfgogcflnnl |
| 簡介 | Shows player ranks & MMR on match pages |
| 檔案大小 | 8.63 KB |
| 安裝次數 | 101 |
| 目前版本 | 1.6 |
| 更新時間 | 2020-08-16 |
| 上架時間 | 2020-08-15 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | hleV |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 說明頁面URL | https://github.com/hleVqq/EseaRanks/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ESEA Ranks",
"version": "1.6",
"description": "Shows player ranks & MMR on match pages",
"permissions": [
"webNavigation",
"*:\/\/play.esea.net\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/play.esea.net\/*"
],
"js": [
"content.js"
]
}
],
"manifest_version": 2,
"icons": {
"16": "esea.png",
"48": "esea.png",
"128": "esea.png"
},
"browser_action": {
"default_popup": "popup.html"
}
} | |