CF ON STEROIDS

It enhances the Codeforces user profile according to selected options locally

What is CF ON STEROIDS?

CF ON STEROIDS is a Chrome extension developed by iManageDs, and its main feature is "It enhances the Codeforces user profile according to selected options locally".

Extension Screenshots

screenshot

Download CF ON STEROIDS Extension CRX File

Download CF ON STEROIDS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name CF ON STEROIDS CF ON STEROIDS
ID gnpecblcobafkekjmocbbeabephkgjpj
Official URL https://chromewebstore.google.com/detail/cf-on-steroids/gnpecblcobafkekjmocbbeabephkgjpj
Description It enhances the Codeforces user profile according to selected options locally
File Size 44.89 KB
Installation Count 208
Current Version 1.0.0
Last Updated 2020-12-12
Publish Date 2020-12-11
Rating 5.00/5 Total 4 Ratings
Developer iManageDs
Email [email protected]
Payment Type free
Supported Languages 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
}