CF Analytics

Analyse Codeforces profiles

Was ist CF Analytics?

CF Analytics ist eine Chrome-Erweiterung, die von Apoorva Raj Bhadani entwickelt wurde, und ihr Hauptmerkmal ist "Analyse Codeforces profiles".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

CF Analytics-Erweiterungs-CRX-Datei herunterladen

Laden Sie CF Analytics-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name CF Analytics CF Analytics
ID hhljbjodjdbjbggddjaidojnlmaobcpo
Offizielle URL https://chromewebstore.google.com/detail/cf-analytics/hhljbjodjdbjbggddjaidojnlmaobcpo
Beschreibung Analyse Codeforces profiles
Dateigröße 112 KB
Installationsanzahl 40,000
Aktuelle Version 0.1.2
Letztes Update 2021-08-04
Veröffentlichungsdatum 2021-08-01
Bewertung 5.00/5 Insgesamt 40 Bewertungen
Entwickler Apoorva Raj Bhadani
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}