AtCoder Color
AtCoderの問題一覧を提出状況に応じて色付けします.
AtCoder Colorとは何ですか?
AtCoder Colorはsune2によって開発されたChromeの拡張機能で、その主な機能は「AtCoderの問題一覧を提出状況に応じて色付けします.」です。
拡張機能のスクリーンショット
AtCoder Color拡張機能のCRXファイルをダウンロード
AtCoder Color拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
緑:AC
黃:部分点
赤:提出したものの0点
※この拡張機能は個人が開発したものであり非公式です.
※使用は自己責任でお願いします.
v1.3 - 2017/06/04
ARCで色付けされる問題がずれるバグを修正
v1.4 - 2019/04/21
AtCoderのURLの形式が変わったことへの対応 拡張機能の基本情報
| 名前 | |
| 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
}
]
} | |