CF Analytics

Analyse Codeforces profiles

Wat is CF Analytics?

CF Analytics is een Chrome-extensie ontwikkeld door Apoorva Raj Bhadani, en de belangrijkste functie is "Analyse Codeforces profiles".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie CF Analytics

Download CF Analytics-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam CF Analytics CF Analytics
ID hhljbjodjdbjbggddjaidojnlmaobcpo
Officiële URL https://chromewebstore.google.com/detail/cf-analytics/hhljbjodjdbjbggddjaidojnlmaobcpo
Beschrijving Analyse Codeforces profiles
Bestandsgrootte 112 KB
Aantal Installaties 40,000
Huidige Versie 0.1.2
Laatst Bijgewerkt 2021-08-04
Publicatiedatum 2021-08-01
Beoordeling 5.00/5 Totaal 40 Beoordelingen
Ontwikkelaar Apoorva Raj Bhadani
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}