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 là gì?
CF World Standings là một tiện ích mở rộng Chrome được phát triển bởi brenopoggiali, và tính năng chính của nó là "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CF World Standings
Tải xuống các tệp mở rộng CF World Standings dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CF World Standings |
ID | caginmipmmelcmijagfppgdljepiioak |
URL Chính Thức | https://chromewebstore.google.com/detail/cf-world-standings/caginmipmmelcmijagfppgdljepiioak |
Mô tả | This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country. |
Kích Thước Tệp | 74.43 KB |
Số Lần Cài Đặt | 8,393 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2020-04-02 |
Ngày Phát Hành | 2020-03-31 |
Đánh Giá | 4.53/5 Tổng số 17 Đánh Giá |
Nhà Phát Triển | brenopoggiali |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/brenopoggiali/CF-World-Standings |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |