CF ON STEROIDS

It enhances the Codeforces user profile according to selected options locally

什麼是CF ON STEROIDS?

CF ON STEROIDS是由iManageDs開發的Chrome擴展程式,該擴展的主要功能是“It enhances the Codeforces user profile according to selected options locally”。

擴展截圖

screenshot

下載CF ON STEROIDS擴展crx文件

下載CF ON STEROIDS擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 CF ON STEROIDS CF ON STEROIDS
ID gnpecblcobafkekjmocbbeabephkgjpj
官方網址 https://chromewebstore.google.com/detail/cf-on-steroids/gnpecblcobafkekjmocbbeabephkgjpj
簡介 It enhances the Codeforces user profile according to selected options locally
檔案大小 44.89 KB
安裝次數 208
目前版本 1.0.0
更新時間 2020-12-12
上架時間 2020-12-11
評分 5.00/5 共 4 次評分
開發者 iManageDs
電子郵箱 [email protected]
付費類型 free
支援的語言 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
}