Codeforces Better Comments
A simple extension to improve your codeforces comments experience!
Co je Codeforces Better Comments?
Codeforces Better Comments je rozšíření Chrome vyvinuté Ishan Joshi, a jeho hlavní funkcí je „A simple extension to improve your codeforces comments experience!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Codeforces Better Comments
Stáhněte si soubory rozšíření Codeforces Better Comments ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Codeforces Better Comments |
ID | dmkcpaljgkhdcachgfmplaoldejhafgn |
Oficiální URL | https://chromewebstore.google.com/detail/codeforces-better-comment/dmkcpaljgkhdcachgfmplaoldejhafgn |
Popis | A simple extension to improve your codeforces comments experience! |
Velikost souboru | 807 KB |
Počet instalací | 161 |
Aktuální Verze | 1.0.4 |
Poslední Aktualizace | 2023-08-23 |
Datum Vydání | 2023-08-16 |
Hodnocení | 5.00/5 Celkem 4 Hodnocení |
Vývojář | Ishan Joshi |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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\/*" ] } ] } |