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 |
| 公式URL | 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 |
| Eメール | [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"
}
} | |