Contest Standings
Shows standings with updated names from codeforces
Contest Standingsとは何ですか?
Contest StandingsはBigBagによって開発されたChromeの拡張機能で、その主な機能は「Shows standings with updated names from codeforces」です。
拡張機能のスクリーンショット
Contest Standings拡張機能のCRXファイルをダウンロード
Contest Standings拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Shows standings of team contests with updated names from codeforces. Also, the total rating of each team is shown. Works on snarknews' platforms and yandex.contest. For the first one also shows the list of all teams sorted by their rating.
拡張機能の基本情報
名前 | Contest Standings |
ID | jmhjngpdfdmgmngfmbbjkmnpmfcbbcii |
公式URL | https://chromewebstore.google.com/detail/contest-standings/jmhjngpdfdmgmngfmbbjkmnpmfcbbcii |
説明 | Shows standings with updated names from codeforces |
ファイルサイズ | 105 KB |
インストール数 | 66 |
現在のバージョン | 3.3.5 |
最終更新日 | 2021-11-09 |
公開日 | 2020-04-18 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | BigBag |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Contest Standings", "short_name": "Contest Standings", "version": "3.3.5", "description": "Shows standings with updated names from codeforces", "manifest_version": 2, "icons": { "16": "static\/icon16.png", "32": "static\/icon32.png", "48": "static\/icon48.png", "128": "static\/icon128.png" }, "permissions": [ "background", "http:\/\/codeforces.com\/" ], "content_scripts": [ { "js": [ "include.js", "third_party\/jquery.js", "updateStandings.js" ], "css": [ "styles.css" ], "matches": [ "http:\/\/*.snarknews.info\/*", "http:\/\/opencup.ru\/*", "https:\/\/official.contest.yandex.ru\/*", "https:\/\/official.contest.yandex.com\/*", "https:\/\/contest.yandex.ru\/*", "https:\/\/contest.yandex.com\/*", "http:\/\/*.mipt.ru\/*" ] } ], "background": { "scripts": [ "include.js", "third_party\/jquery.js", "background.js" ] }, "browser_action": { "default_title": "Contest Standings", "default_icon": "static\/icon16.png", "default_popup": "popup.html" } } |