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 |
官方網址 | 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" ] } |