CF ON STEROIDS

It enhances the Codeforces user profile according to selected options locally

Vad är CF ON STEROIDS?

CF ON STEROIDS är en Chrome-tillägg utvecklad av iManageDs, och dess huvudfunktion är "It enhances the Codeforces user profile according to selected options locally".

Tilläggsskärmbilder

screenshot

Ladda ner CF ON STEROIDS-förlängningens CRX-fil

Ladda ner CF ON STEROIDS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn CF ON STEROIDS CF ON STEROIDS
ID gnpecblcobafkekjmocbbeabephkgjpj
Officiell webbadress https://chromewebstore.google.com/detail/cf-on-steroids/gnpecblcobafkekjmocbbeabephkgjpj
Beskrivning It enhances the Codeforces user profile according to selected options locally
Filstorlek 44.89 KB
Antal Installationer 208
Aktuell Version 1.0.0
Senast Uppdaterad 2020-12-12
Publiceringsdatum 2020-12-11
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare iManageDs
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}