CF static site enchancer

Enhances the static codeforces websites with additional features so that you get a complete environment during contests

CF static site enchancer란 무엇입니까?

CF static site enchancer은(는) Ashutosh Nilesh Patkar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhances the static codeforces websites with additional features so that you get a complete environment during contests"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

CF static site enchancer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A lot of people like appearing for codeforces contests on the static websites. It is fast and distraction free. But it doesn't have some of the key features that we need when participating in a contest.

This extension aims towards enhancing the static (m1,m2,m3) codeforces websites with additional features so that you get a complete environment during contests

Features include

Previous version
Submission count for the problems.

Update adds new features like
Copy button for copying input data to clipboard.
Predicted rating change.
Friends standings.

Thanks to CF Predictor extension whose backend service is used to fetch the predicted rating change.

Each feature is accessible separately so that the browser doesn't make unnecessary computations and you can use only the features that you want to use.                    

확장 프로그램 기본 정보

이름 CF static site enchancer CF static site enchancer
ID kephibooehcpbfddbnpgphdmpdmpkika
공식 URL https://chrome.google.com/webstore/detail/cf-static-site-enchancer/kephibooehcpbfddbnpgphdmpdmpkika
설명 Enhances the static codeforces websites with additional features so that you get a complete environment during contests
파일 크기 110 KB
설치 횟수 734
현재 버전 2.0.0
최근 업데이트 2021-07-27
출시 날짜 2020-07-21
평점 5.00/5 총 2 개의 평점
개발자 Ashutosh Nilesh Patkar
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/Holmes7/CF-Static-Site-Enhancer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CF static site enchancer",
    "version": "2.0.0",
    "description": "Enhances the static codeforces websites with additional features so that you get a complete environment during contests",
    "manifest_version": 3,
    "icons": {
        "48": "static\/icon48.png",
        "64": "static\/icon64.png",
        "128": "static\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/m1.codeforces.com\/contest\/*",
                "*:\/\/m2.codeforces.com\/contest\/*",
                "*:\/\/m3.codeforces.com\/contest\/*"
            ],
            "css": [
                "tables.css"
            ],
            "js": [
                "main.js"
            ]
        },
        {
            "matches": [
                "*:\/\/m1.codeforces.com\/contest\/*\/problem\/*",
                "*:\/\/m2.codeforces.com\/contest\/*\/problem\/*",
                "*:\/\/m3.codeforces.com\/contest\/*\/problem\/*"
            ],
            "js": [
                "copy.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/codeforces.com\/*",
        "https:\/\/cf-predictor.herokuapp.com\/*"
    ]
}