Codeforces Better Comments

A simple extension to improve your codeforces comments experience!

Codeforces Better Commentsคืออะไร?

Codeforces Better Comments เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ishan Joshi และคุณลักษณะหลักของมันคือ "A simple extension to improve your codeforces comments experience!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Codeforces Better Comments

ดาวน์โหลดไฟล์ส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Codeforces Better Comments Codeforces Better Comments
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
อีเมล [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\/*"
            ]
        }
    ]
}