Comfortable Atcoder

Comfort your atcoder life. For more detail, visit https://github.com/drafear/comfortable-atcoder

Comfortable Atcoder란 무엇입니까?

Comfortable Atcoder은(는) drafear에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Comfort your atcoder life. For more detail, visit https://github.com/drafear/comfortable-atcoder"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Comfortable Atcoder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        1. Notify judge result of codes you submit
2. Notify new clarifications on the contest page you open
3. Add a link tab to beta page on non-beta pages
4. Dropdown list of problems
5. Warn if you select specific languages for submission such as text, bash and so on (configurable)
6. You can enable/disable them                    

확장 프로그램 기본 정보

이름 Comfortable Atcoder Comfortable Atcoder
ID ipmmkccdccnephfilbjdnmnfcbopbpaj
공식 URL https://chromewebstore.google.com/detail/comfortable-atcoder/ipmmkccdccnephfilbjdnmnfcbopbpaj
설명 Comfort your atcoder life. For more detail, visit https://github.com/drafear/comfortable-atcoder
파일 크기 95.25 KB
설치 횟수 3,580
현재 버전 1.6.10
최근 업데이트 2019-05-25
출시 날짜 2019-05-24
평점 4.83/5 총 6 개의 평점
개발자 drafear
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/drafear/comfortable-atcoder
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comfortable Atcoder",
    "version": "1.6.10",
    "manifest_version": 2,
    "description": "Comfort your atcoder life. For more detail, visit https:\/\/github.com\/drafear\/comfortable-atcoder",
    "author": "drafear",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/atcoder.jp\/contests\/*",
                "*:\/\/atcoder.jp\/users\/*",
                "*:\/\/*.contest.atcoder.jp\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.contest.atcoder.jp\/users\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/jquery.cookie.js",
                "content\/all.js"
            ],
            "css": [
                "css\/all.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/atcoder.jp\/contests\/*"
            ],
            "js": [
                "content\/betalib.js",
                "content\/dropdown-modify.js",
                "content\/clar-notify.js"
            ],
            "css": [
                "css\/dropdown-modify.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/atcoder.jp\/contests\/*\/submissions\/me"
            ],
            "js": [
                "content\/result-notify.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/atcoder.jp\/contests\/*\/submit*",
                "*:\/\/atcoder.jp\/contests\/*\/tasks\/*"
            ],
            "js": [
                "content\/submission-warning.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/atcoder.jp\/users\/*\/history*"
            ],
            "js": [
                "content\/add-tweet-button.js"
            ],
            "css": [
                "css\/add-twitter-button.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.contest.atcoder.jp\/*"
            ],
            "js": [
                "content\/link-to-beta.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "image\/beta.png"
    ],
    "background": {
        "scripts": [
            "lib\/jquery.min.js",
            "background\/oninstall.js",
            "background\/dispatcher.js"
        ],
        "persistent": true
    },
    "options_page": "options-page\/options.html",
    "permissions": [
        "notifications",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "image\/icon.png",
        "48": "image\/icon.png",
        "128": "image\/icon.png"
    }
}