Codeforces Better Comments
A simple extension to improve your codeforces comments experience!
Codeforces Better Comments là gì?
Codeforces Better Comments là một tiện ích mở rộng Chrome được phát triển bởi Ishan Joshi, và tính năng chính của nó là "A simple extension to improve your codeforces comments experience!".
Ả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 Better Comments
Tải xuống các tệp mở rộng Codeforces Better Comments 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
Add the following features to codeforces blog comments: - Button to sort comments by comment rating - Button to collapse subcomments - Button to instant message the comment author - Filter comments based on author rating - Filter comments based on comment rating
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Codeforces Better Comments |
ID | dmkcpaljgkhdcachgfmplaoldejhafgn |
URL Chính Thức | https://chromewebstore.google.com/detail/codeforces-better-comment/dmkcpaljgkhdcachgfmplaoldejhafgn |
Mô tả | A simple extension to improve your codeforces comments experience! |
Kích Thước Tệp | 807 KB |
Số Lần Cài Đặt | 161 |
Phiên Bản Hiện Tại | 1.0.4 |
Cập Nhật Lần Cuối | 2023-08-23 |
Ngày Phát Hành | 2023-08-16 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Ishan Joshi |
[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", "manifest_version": 3, "name": "Codeforces Better Comments", "description": "A simple extension to improve your codeforces comments experience!", "version": "1.0.4", "icons": { "16": "assets\/logo\/logo-16.png", "32": "assets\/logo\/logo-32.png", "48": "assets\/logo\/logo-48.png", "128": "assets\/logo\/logo-128.png" }, "options_page": "settings\/settings.html", "action": { "default_title": "Codeforces Better Comments", "default_popup": "popup\/popup.html" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "https:\/\/codeforces.com\/*" ] } ], "background": { "service_worker": "background\/service-worker.js" }, "content_scripts": [ { "css": [ "content\/content-script.css" ], "js": [ "content\/content-script.js" ], "matches": [ "https:\/\/codeforces.com\/blog\/entry\/*" ] } ] } |