CF ON STEROIDS

It enhances the Codeforces user profile according to selected options locally

CF ON STEROIDSคืออะไร?

CF ON STEROIDS เป็นส่วนขยายของ Chrome ที่พัฒนาโดย iManageDs และคุณลักษณะหลักของมันคือ "It enhances the Codeforces user profile according to selected options locally"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CF ON STEROIDS

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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
}