CF ON STEROIDS

It enhances the Codeforces user profile according to selected options locally

Wat is CF ON STEROIDS?

CF ON STEROIDS is een Chrome-extensie ontwikkeld door iManageDs, en de belangrijkste functie is "It enhances the Codeforces user profile according to selected options locally".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie CF ON STEROIDS

Download CF ON STEROIDS-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

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

Basisinformatie over de Extensie

Naam CF ON STEROIDS CF ON STEROIDS
ID gnpecblcobafkekjmocbbeabephkgjpj
Officiële URL https://chromewebstore.google.com/detail/cf-on-steroids/gnpecblcobafkekjmocbbeabephkgjpj
Beschrijving It enhances the Codeforces user profile according to selected options locally
Bestandsgrootte 44.89 KB
Aantal Installaties 208
Huidige Versie 1.0.0
Laatst Bijgewerkt 2020-12-12
Publicatiedatum 2020-12-11
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar iManageDs
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}