CF ON STEROIDS

It enhances the Codeforces user profile according to selected options locally

Was ist CF ON STEROIDS?

CF ON STEROIDS ist eine Chrome-Erweiterung, die von iManageDs entwickelt wurde, und ihr Hauptmerkmal ist "It enhances the Codeforces user profile according to selected options locally".

Erweiterungsscreenshots

screenshot

CF ON STEROIDS-Erweiterungs-CRX-Datei herunterladen

Laden Sie CF ON STEROIDS-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

                        It enables user to change their profile rating, contribution and roles in Codeforces.                    

Grundlegende Informationen zur Erweiterung

Name CF ON STEROIDS CF ON STEROIDS
ID gnpecblcobafkekjmocbbeabephkgjpj
Offizielle URL https://chromewebstore.google.com/detail/cf-on-steroids/gnpecblcobafkekjmocbbeabephkgjpj
Beschreibung It enhances the Codeforces user profile according to selected options locally
Dateigröße 44.89 KB
Installationsanzahl 208
Aktuelle Version 1.0.0
Letztes Update 2020-12-12
Veröffentlichungsdatum 2020-12-11
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler iManageDs
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CF ON STEROIDS",
    "description": "It enhances the Codeforces user profile according to selected options locally",
    "version": "1.0.0",
    "browser_action": {
        "default_popup": "steroids.html",
        "default_icon": "ico64.png"
    },
    "icons": {
        "16": "ico16.png",
        "48": "ico48.png",
        "64": "ico64.png",
        "128": "ico128.png",
        "256": "ico256.png",
        "512": "ico512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/codeforces.com\/*",
                "https:\/\/codeforces.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens steroids.html"
        }
    },
    "manifest_version": 2
}