CF static site enchancer

Enhances the static codeforces websites with additional features so that you get a complete environment during contests

Was ist CF static site enchancer?

CF static site enchancer ist eine Chrome-Erweiterung, die von Ashutosh Nilesh Patkar entwickelt wurde, und ihr Hauptmerkmal ist "Enhances the static codeforces websites with additional features so that you get a complete environment during contests".

Erweiterungsscreenshots

screenshot
screenshot

CF static site enchancer-Erweiterungs-CRX-Datei herunterladen

Laden Sie CF static site enchancer-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

                        A lot of people like appearing for codeforces contests on the static websites. It is fast and distraction free. But it doesn't have some of the key features that we need when participating in a contest.

This extension aims towards enhancing the static (m1,m2,m3) codeforces websites with additional features so that you get a complete environment during contests

Features include

Previous version
Submission count for the problems.

Update adds new features like
Copy button for copying input data to clipboard.
Predicted rating change.
Friends standings.

Thanks to CF Predictor extension whose backend service is used to fetch the predicted rating change.

Each feature is accessible separately so that the browser doesn't make unnecessary computations and you can use only the features that you want to use.                    

Grundlegende Informationen zur Erweiterung

Name CF static site enchancer CF static site enchancer
ID kephibooehcpbfddbnpgphdmpdmpkika
Offizielle URL https://chrome.google.com/webstore/detail/cf-static-site-enchancer/kephibooehcpbfddbnpgphdmpdmpkika
Beschreibung Enhances the static codeforces websites with additional features so that you get a complete environment during contests
Dateigröße 110 KB
Installationsanzahl 734
Aktuelle Version 2.0.0
Letztes Update 2021-07-27
Veröffentlichungsdatum 2020-07-21
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Ashutosh Nilesh Patkar
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/Holmes7/CF-Static-Site-Enhancer
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CF static site enchancer",
    "version": "2.0.0",
    "description": "Enhances the static codeforces websites with additional features so that you get a complete environment during contests",
    "manifest_version": 3,
    "icons": {
        "48": "static\/icon48.png",
        "64": "static\/icon64.png",
        "128": "static\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/m1.codeforces.com\/contest\/*",
                "*:\/\/m2.codeforces.com\/contest\/*",
                "*:\/\/m3.codeforces.com\/contest\/*"
            ],
            "css": [
                "tables.css"
            ],
            "js": [
                "main.js"
            ]
        },
        {
            "matches": [
                "*:\/\/m1.codeforces.com\/contest\/*\/problem\/*",
                "*:\/\/m2.codeforces.com\/contest\/*\/problem\/*",
                "*:\/\/m3.codeforces.com\/contest\/*\/problem\/*"
            ],
            "js": [
                "copy.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/codeforces.com\/*",
        "https:\/\/cf-predictor.herokuapp.com\/*"
    ]
}