Atcoder Friend Standings
Atcoder の Standings に Friend 機能を追加します
What is Atcoder Friend Standings?
Atcoder Friend Standings is a Chrome extension developed by zerokugi, and its main feature is "Atcoder の Standings に Friend 機能を追加します".
Download Atcoder Friend Standings Extension CRX File
Download Atcoder Friend Standings 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
Atcoder の順位表にフレンド抽出機能を追加します。 ユーザページからフレンドの追加を行うことができます。 順位表ページでは全体の順位表とフレンドのみの順位表を選択することができます。 フレンド情報はブラウザに格納されておりアカウントと紐付けられています。 なので、違うアカウントでログインしてもフレンドリストは共有されます。 逆に同じアカウントでも異なるPC間ではフレンドリストは共有されません。 ※本プラグインはAtCoder公式のものではありません。 公式の仕様変更などにより不具合が起きる可能性があります。 使用は自己責任でお願いします。
Extension Basic Information
Name | ![]() |
ID | apoegnjnclihjjlighifiojbocjnbbgm |
Official URL | https://chrome.google.com/webstore/detail/atcoder-friend-standings/apoegnjnclihjjlighifiojbocjnbbgm |
Description | Atcoder の Standings に Friend 機能を追加します |
File Size | 44.77 KB |
Installation Count | 111 |
Current Version | 1.14 |
Last Updated | 2014-11-19 |
Publish Date | 2014-11-19 |
Rating | 5.00/5 Total 4 Ratings |
Developer | zerokugi |
Payment Type | free |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Atcoder Friend Standings", "version": "1.14", "manifest_version": 2, "description": "Atcoder \u306e Standings \u306b Friend \u6a5f\u80fd\u3092\u8ffd\u52a0\u3057\u307e\u3059", "background": { "scripts": [ "background.js", "jquery-1.11.1.min.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*.contest.atcoder.jp\/standings*" ], "js": [ "content-script.js", "jquery-1.11.1.min.js" ] }, { "matches": [ "http:\/\/*.atcoder.jp\/users*" ], "js": [ "addFriend.js" ] } ], "permissions": [ "storage" ], "web_accessible_resources": [ "embeded-script.js", "yellow.png", "gray.png" ] } |