CF Tracker

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

What is CF Tracker?

CF Tracker is a Chrome extension developed by Unknown, and its main feature is "Find time invested in a particular problem during a contest or otherwise.".

Extension Screenshots

screenshot

Download CF Tracker Extension CRX File

Download CF Tracker 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

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

Extension Basic Information

Name CF Tracker CF Tracker
ID hadiffebpglmdnknojeoelfgmjleiecc
Official URL https://chromewebstore.google.com/detail/cf-tracker/hadiffebpglmdnknojeoelfgmjleiecc
Description Find time invested in a particular problem during a contest or otherwise.
File Size 10.88 KB
Installation Count 1,914
Current Version 1.0.1
Last Updated 2022-02-14
Publish Date 2022-02-10
Rating 5.00/5 Total 5 Ratings
Developer Unknown
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}