AtCoder Color Mark
TopCoderのようなレーティングを示す円を順位表に表示します
What is AtCoder Color Mark?
AtCoder Color Mark is a Chrome extension developed by sasaki, and its main feature is "TopCoderのようなレーティングを示す円を順位表に表示します".
Extension Screenshots
Download AtCoder Color Mark Extension CRX File
Download AtCoder Color Mark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
TopCoderに表示されているようなレーティングを示す円をAtCoderのコンテスト(ABC/ARC/AGCなど)の順位表に表示します。 これにより自分の前後の人がどれくらいのレーティングなのか等の情報を視覚的に得ることができます。 v1.0.5でコンテスト成績表ページでも円の表示を追加しました。 v2.0.0で新しいURL(https://atcoder.jp/contests/*)のみに対応しました。 ※データは30分ごとに更新されます
Extension Basic Information
Name | AtCoder Color Mark |
ID | dogcmibkiolcdafifopmnghhlajpbmga |
Official URL | https://chromewebstore.google.com/detail/atcoder-color-mark/dogcmibkiolcdafifopmnghhlajpbmga |
Description | TopCoderのようなレーティングを示す円を順位表に表示します |
File Size | 9.49 KB |
Installation Count | 812 |
Current Version | 2.0.3 |
Last Updated | 2023-04-09 |
Publish Date | 2020-06-13 |
Developer | sasaki |
[email protected] | |
Payment Type | free |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AtCoder Color Mark", "description": "TopCoder\u306e\u3088\u3046\u306a\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0\u3092\u793a\u3059\u5186\u3092\u9806\u4f4d\u8868\u306b\u8868\u793a\u3057\u307e\u3059", "version": "2.0.3", "icons": { "16": "img\/16.png", "48": "img\/48.png", "128": "img\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/atcoder.jp\/contests\/*", "https:\/\/atcoder.jp\/users\/*\/history", "https:\/\/atcoder.jp\/users\/*\/history?contestType=*" ], "css": [ "injection.css" ], "js": [ "injection.js" ] } ], "permissions": [ "https:\/\/atcoder.jp\/contests\/*", "https:\/\/atcoder.jp\/users\/*\/history", "https:\/\/atcoder.jp\/users\/*\/history?contestType=*" ] } |