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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}