Codeforces Better Comments
A simple extension to improve your codeforces comments experience!
What is Codeforces Better Comments?
Codeforces Better Comments is a Chrome extension developed by Ishan Joshi, and its main feature is "A simple extension to improve your codeforces comments experience!".
Extension Screenshots
Download Codeforces Better Comments Extension CRX File
Download Codeforces Better Comments extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Codeforces Better Comments |
ID | dmkcpaljgkhdcachgfmplaoldejhafgn |
Official URL | https://chromewebstore.google.com/detail/codeforces-better-comment/dmkcpaljgkhdcachgfmplaoldejhafgn |
Description | A simple extension to improve your codeforces comments experience! |
File Size | 807 KB |
Installation Count | 161 |
Current Version | 1.0.4 |
Last Updated | 2023-08-23 |
Publish Date | 2023-08-16 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Ishan Joshi |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } ] } |