Contest Standings
Shows standings with updated names from codeforces
Contest Standings là gì?
Contest Standings là một tiện ích mở rộng Chrome được phát triển bởi BigBag, và tính năng chính của nó là "Shows standings with updated names from codeforces".
Ả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 Contest Standings
Tải xuống các tệp mở rộng Contest 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
Shows standings of team contests with updated names from codeforces. Also, the total rating of each team is shown. Works on snarknews' platforms and yandex.contest. For the first one also shows the list of all teams sorted by their rating.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Contest Standings |
ID | jmhjngpdfdmgmngfmbbjkmnpmfcbbcii |
URL Chính Thức | https://chromewebstore.google.com/detail/contest-standings/jmhjngpdfdmgmngfmbbjkmnpmfcbbcii |
Mô tả | Shows standings with updated names from codeforces |
Kích Thước Tệp | 105 KB |
Số Lần Cài Đặt | 66 |
Phiên Bản Hiện Tại | 3.3.5 |
Cập Nhật Lần Cuối | 2021-11-09 |
Ngày Phát Hành | 2020-04-18 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | BigBag |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Contest Standings", "short_name": "Contest Standings", "version": "3.3.5", "description": "Shows standings with updated names from codeforces", "manifest_version": 2, "icons": { "16": "static\/icon16.png", "32": "static\/icon32.png", "48": "static\/icon48.png", "128": "static\/icon128.png" }, "permissions": [ "background", "http:\/\/codeforces.com\/" ], "content_scripts": [ { "js": [ "include.js", "third_party\/jquery.js", "updateStandings.js" ], "css": [ "styles.css" ], "matches": [ "http:\/\/*.snarknews.info\/*", "http:\/\/opencup.ru\/*", "https:\/\/official.contest.yandex.ru\/*", "https:\/\/official.contest.yandex.com\/*", "https:\/\/contest.yandex.ru\/*", "https:\/\/contest.yandex.com\/*", "http:\/\/*.mipt.ru\/*" ] } ], "background": { "scripts": [ "include.js", "third_party\/jquery.js", "background.js" ] }, "browser_action": { "default_title": "Contest Standings", "default_icon": "static\/icon16.png", "default_popup": "popup.html" } } |