CF GetRating

Get rating for Codeforces problems even with problem tags off.

Τι είναι το CF GetRating;

Το CF GetRating είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Manas Rawat, και η κύρια λειτουργία του είναι "Get rating for Codeforces problems even with problem tags off.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης CF GetRating

Λήψη αρχείων επέκτασης CF GetRating σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Get rating for Codeforces problems even with problem tags off. This Codeforces Get Rating extension helps users to just view the problem rating without seeing the other tags. But if you are stuck with any problem then you can view the tags by clicking on Show All Tags button. The extension also includes a shortcut to go to the Contest Standings directly.

This extension is very helpful while practicing problems on Codeforces as it helps you to know the rating of the problem without explicitly knowing the tags associated with it.

How to use : 
1. Install the extension.
2. Turn off [ Show tags for unsolved problems ] option in the Problemset page of codeforces.
3. Open any Codeforces problem and it will show the problem rating.

*NOTE* The extension does not work when the Codeforces API is down.

*NOTE* The extension does not work with problems that do not have a problem rating.

[ Screenshots for all the cases are attached ]

UPDATE 1.0.1
Now you will be able to visit the Contest Standings from the problem page itself with the click of a button.

UPDATE 1.0.3
Fixed issues with problem parsing.

UPDATE 1.0.4
New feature to Show All Tags for a problem.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα CF GetRating CF GetRating
ID amnjdhcbnpchmbggnfachokcjiidcpkc
Επίσημο URL https://chromewebstore.google.com/detail/cf-getrating/amnjdhcbnpchmbggnfachokcjiidcpkc
Περιγραφή Get rating for Codeforces problems even with problem tags off.
Μέγεθος Αρχείου 4.56 MB
Αριθμός Εγκαταστάσεων 2,855
Τρέχουσα Έκδοση 1.0.4
Τελευταία Ενημέρωση 2022-07-25
Ημερομηνία Δημοσίευσης 2022-07-07
Αξιολόγηση 5.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Manas Rawat
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/importlogic/cf-getrating
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CF GetRating",
    "description": "Get rating for Codeforces problems even with problem tags off.",
    "version": "1.0.4",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/codeforces.com\/problemset\/problem\/*\/*",
                "*:\/\/codeforces.com\/contest\/*\/problem\/*"
            ],
            "js": [
                "background.js"
            ],
            "css": [
                "background.css"
            ]
        }
    ]
}