CF Analytics

Analyse Codeforces profiles

What is CF Analytics?

CF Analytics is a Chrome extension developed by Apoorva Raj Bhadani, and its main feature is "Analyse Codeforces profiles".

Extension Screenshots

screenshot
screenshot
screenshot

Download CF Analytics Extension CRX File

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

                        CF Analytics Chrome extension improves the Codeforces profile webpage to include statistics of problems solved by the user. The ‘Problem Rating’ graph is a bar chart showing problems solved for each problem rating. The ‘Tags Solved’ graph is a doughnut chart displaying tags solved across any problem and also lists a count for each tag. The ‘Unsolved Problems’ shows a count of all problems attempted with not correct verdict and also lists them.

The extension communicates only with the Codeforces API and runs entirely on the browser.                    

Extension Basic Information

Name CF Analytics CF Analytics
ID hhljbjodjdbjbggddjaidojnlmaobcpo
Official URL https://chromewebstore.google.com/detail/cf-analytics/hhljbjodjdbjbggddjaidojnlmaobcpo
Description Analyse Codeforces profiles
File Size 112 KB
Installation Count 40,000
Current Version 0.1.2
Last Updated 2021-08-04
Publish Date 2021-08-01
Rating 5.00/5 Total 40 Ratings
Developer Apoorva Raj Bhadani
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CF Analytics",
    "version": "0.1.2",
    "description": "Analyse Codeforces profiles",
    "icons": {
        "128": "src\/asset\/icon128.png",
        "48": "src\/asset\/icon48.png",
        "16": "src\/asset\/icon16.png"
    },
    "browser_action": {
        "default_icon": "src\/asset\/icon16.png",
        "default_popup": "src\/popup.html",
        "default_title": "CF Analytics"
    },
    "background": {
        "scripts": [
            "src\/js\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codeforces.com\/friends"
            ],
            "js": [
                "src\/lib\/jquery-3.6.0.min.js",
                "src\/js\/contentFriends.js"
            ],
            "css": [
                "src\/css\/contentFriends.css"
            ]
        },
        {
            "matches": [
                "https:\/\/codeforces.com\/profile\/*"
            ],
            "js": [
                "src\/lib\/jquery-3.6.0.min.js",
                "src\/lib\/chart.min.js",
                "src\/js\/contentProfile.js"
            ],
            "css": [
                "src\/css\/contentProfile.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/codeforces.com\/*"
    ]
}