CF Tracker

Find time invested in a particular problem during a contest or otherwise.

CF Trackerคืออะไร?

CF Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Find time invested in a particular problem during a contest or otherwise."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CF Tracker

ดาวน์โหลดไฟล์ส่วนขยาย CF Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Find time spent on a particular problem on codeforces.com. It helps in increasing speed which is vital for any competitive programmer.                    

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

ชื่อ CF Tracker CF Tracker
ID hadiffebpglmdnknojeoelfgmjleiecc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cf-tracker/hadiffebpglmdnknojeoelfgmjleiecc
คำอธิบาย Find time invested in a particular problem during a contest or otherwise.
ขนาดไฟล์ 10.88 KB
จำนวนการติดตั้ง 1,914
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2022-02-14
วันที่เผยแพร่ 2022-02-10
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Unknown
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CF Tracker",
    "description": "Find time invested in a particular problem during a contest or otherwise.",
    "version": "1.0.1",
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/codeforces.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}