CF Tracker

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

CF Trackerとは何ですか?

CF TrackerはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Find time invested in a particular problem during a contest or otherwise.」です。

拡張機能のスクリーンショット

screenshot

CF Tracker拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}