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 :)
扩展基本信息
名称 | ESEA Ranks |
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 |
电子邮箱 | [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" } } |