CF World Standings
This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.
什么是CF World Standings?
CF World Standings是由brenopoggiali开发的Chrome扩展程序,该扩展的主要功能是“This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.”。
扩展截图
下载CF World Standings扩展crx文件
下载CF World Standings扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
All the countries with more than 5 active users are listed and the lists are updated every weekend. Unfortunately, Codeforces does not allow us to have a list with more than 1000 users. In those cases, we give preference for active users (those who played a contest in the last month) and those with higher ratings.
扩展基本信息
名称 | CF World Standings |
ID | caginmipmmelcmijagfppgdljepiioak |
官方URL | https://chromewebstore.google.com/detail/cf-world-standings/caginmipmmelcmijagfppgdljepiioak |
简介 | This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country. |
文件大小 | 74.43 KB |
安装次数 | 8,393 |
当前版本 | 1.0.1 |
更新时间 | 2020-04-02 |
上架时间 | 2020-03-31 |
评分 | 4.53/5 共17次评分 |
开发者 | brenopoggiali |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://github.com/brenopoggiali/CF-World-Standings |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CF World Standings ", "description": "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.", "version": "1.0.1", "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.min.js", "js\/background.js" ] } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon16.png", "default_popup": "index.html", "default_title": "CF World Standings" }, "permissions": [ "tabs", "storage" ] } |