Codeforces Better Comments
A simple extension to improve your codeforces comments experience!
Codeforces Better Commentsとは何ですか?
Codeforces Better CommentsはIshan Joshiによって開発されたChromeの拡張機能で、その主な機能は「A simple extension to improve your codeforces comments experience!」です。
拡張機能のスクリーンショット
Codeforces Better Comments拡張機能のCRXファイルをダウンロード
Codeforces Better Comments拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| ID | dmkcpaljgkhdcachgfmplaoldejhafgn |
| 公式URL | https://chromewebstore.google.com/detail/codeforces-better-comment/dmkcpaljgkhdcachgfmplaoldejhafgn |
| 説明 | A simple extension to improve your codeforces comments experience! |
| ファイルサイズ | 807 KB |
| インストール数 | 161 |
| 現在のバージョン | 1.0.4 |
| 最終更新日 | 2023-08-23 |
| 公開日 | 2023-08-16 |
| 評価 | 5.00/5 合計 4 レビュー |
| 開発者 | Ishan Joshi |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | 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\/*"
]
}
]
} | |