Codeforces Enhancer
Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link
Codeforces Enhancer là gì?
Codeforces Enhancer là một tiện ích mở rộng Chrome được phát triển bởi alexander.agulenko, và tính năng chính của nó là "Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link".
Ả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 Codeforces Enhancer
Tải xuống các tệp mở rộng Codeforces Enhancer 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
Chrome extension that makes Codeforces better: supports multiple ratings graph, colorizes standings by used programming languages, adds "Hide/Show solved problems" link to Problemset page
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Codeforces Enhancer |
ID | ocmandagmgmkcplckgnfgaokpgkfenmp |
URL Chính Thức | https://chromewebstore.google.com/detail/codeforces-enhancer/ocmandagmgmkcplckgnfgaokpgkfenmp |
Mô tả | Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link |
Kích Thước Tệp | 25.12 KB |
Số Lần Cài Đặt | 13,461 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2020-07-23 |
Ngày Phát Hành | 2015-07-27 |
Đánh Giá | 4.40/5 Tổng số 35 Đánh Giá |
Nhà Phát Triển | alexander.agulenko |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://codeforces.com/profile/agul |
URL Trang Trợ Giúp | https://github.com/agul/cf-enhancer |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": false, "js": [ "options.js", "multiGraph.js" ], "matches": [ "https:\/\/codeforces.com\/profile\/*", "https:\/\/www.codeforces.com\/profile\/*" ], "run_at": "document_idle" }, { "all_frames": false, "js": [ "options.js", "colorizeStandings.js" ], "matches": [ "https:\/\/codeforces.com\/contest\/*\/standings*", "https:\/\/www.codeforces.com\/contest\/*\/standings*", "https:\/\/www.codeforces.com\/contest\/*\/room\/*", "https:\/\/codeforces.com\/contest\/*\/room\/*", "https:\/\/www.codeforces.com\/gym\/*\/standings*", "https:\/\/codeforces.com\/gym\/*\/standings*", "https:\/\/www.codeforces.com\/spectator\/*\/standings*", "https:\/\/codeforces.com\/spectator\/*\/standings*" ], "run_at": "document_idle" }, { "all_frames": false, "js": [ "options.js", "hideSolved.js" ], "matches": [ "https:\/\/codeforces.com\/problemset", "https:\/\/www.codeforces.com\/problemset", "https:\/\/www.codeforces.com\/problemset\/page\/*", "https:\/\/codeforces.com\/problemset\/page\/*" ], "run_at": "document_idle" } ], "description": "Makes Codeforces better: multiple ratings graph, colorizes standings, adds \"Hide\/Show solved problems\" link", "icons": { "16": "logo_16x16.png", "48": "logo_48x48.png", "128": "logo_128x128.png" }, "manifest_version": 2, "name": "Codeforces Enhancer", "short_name": "CF Enhancer", "permissions": [ "storage" ], "version": "1.2", "options_page": "options_page.html", "options_ui": { "page": "options.html", "chrome_style": true } } |