AtCoder Color

AtCoderの問題一覧を提出状況に応じて色付けします.

AtCoder Color란 무엇입니까?

AtCoder Color은(는) sune2에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "AtCoderの問題一覧を提出状況に応じて色付けします."입니다.

확장 프로그램 스크린샷

screenshot

AtCoder Color 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        緑:AC
黃:部分点
赤:提出したものの0点

※この拡張機能は個人が開発したものであり非公式です.
※使用は自己責任でお願いします.

v1.3 - 2017/06/04
ARCで色付けされる問題がずれるバグを修正

v1.4 - 2019/04/21
AtCoderのURLの形式が変わったことへの対応                    

확장 프로그램 기본 정보

이름 AtCoder Color AtCoder Color
ID mcefknoiablejellmicpmokcaelpdaec
공식 URL https://chromewebstore.google.com/detail/atcoder-color/mcefknoiablejellmicpmokcaelpdaec
설명 AtCoderの問題一覧を提出状況に応じて色付けします.
파일 크기 39.79 KB
설치 횟수 1,473
현재 버전 1.4
최근 업데이트 2019-04-20
출시 날짜 2019-04-20
평점 4.60/5 총 10 개의 평점
개발자 sune2
결제 유형 free
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AtCoder Color",
    "description": "AtCoder\u306e\u554f\u984c\u4e00\u89a7\u3092\u63d0\u51fa\u72b6\u6cc1\u306b\u5fdc\u3058\u3066\u8272\u4ed8\u3051\u3057\u307e\u3059\uff0e",
    "version": "1.4",
    "permissions": [
        "http:\/\/*.contest.atcoder.jp\/*",
        "https:\/\/*.contest.atcoder.jp\/*",
        "https:\/\/atcoder.jp\/contests\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.contest.atcoder.jp\/assignments",
                "https:\/\/*.contest.atcoder.jp\/assignments",
                "https:\/\/atcoder.jp\/contests\/*\/tasks"
            ],
            "js": [
                "jquery.min.js",
                "myscript.js"
            ],
            "css": [
                "mycss.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}