CF Analytics

Analyse Codeforces profiles

CF Analytics là gì?

CF Analytics là một tiện ích mở rộng Chrome được phát triển bởi Apoorva Raj Bhadani, và tính năng chính của nó là "Analyse Codeforces profiles".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CF Analytics

Tải xuống các tệp mở rộng CF Analytics dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CF Analytics CF Analytics
ID hhljbjodjdbjbggddjaidojnlmaobcpo
URL Chính Thức https://chromewebstore.google.com/detail/cf-analytics/hhljbjodjdbjbggddjaidojnlmaobcpo
Mô tả Analyse Codeforces profiles
Kích Thước Tệp 112 KB
Số Lần Cài Đặt 40,000
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2021-08-04
Ngày Phát Hành 2021-08-01
Đánh Giá 5.00/5 Tổng số 40 Đánh Giá
Nhà Phát Triển Apoorva Raj Bhadani
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}