Atcoder Friend Standings

Atcoder の Standings に Friend 機能を追加します

Wat is Atcoder Friend Standings?

Atcoder Friend Standings is een Chrome-extensie ontwikkeld door zerokugi, en de belangrijkste functie is "Atcoder の Standings に Friend 機能を追加します".

Download het CRX-bestand van de extensie Atcoder Friend Standings

Download Atcoder Friend Standings-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Atcoder の順位表にフレンド抽出機能を追加します。
ユーザページからフレンドの追加を行うことができます。
順位表ページでは全体の順位表とフレンドのみの順位表を選択することができます。


フレンド情報はブラウザに格納されておりアカウントと紐付けられています。
なので、違うアカウントでログインしてもフレンドリストは共有されます。
逆に同じアカウントでも異なるPC間ではフレンドリストは共有されません。

※本プラグインはAtCoder公式のものではありません。
 公式の仕様変更などにより不具合が起きる可能性があります。
 使用は自己責任でお願いします。                    

Basisinformatie over de Extensie

Naam Atcoder Friend Standings Atcoder Friend Standings
ID apoegnjnclihjjlighifiojbocjnbbgm
Officiële URL https://chrome.google.com/webstore/detail/atcoder-friend-standings/apoegnjnclihjjlighifiojbocjnbbgm
Beschrijving Atcoder の Standings に Friend 機能を追加します
Bestandsgrootte 44.77 KB
Aantal Installaties 111
Huidige Versie 1.14
Laatst Bijgewerkt 2014-11-19
Publicatiedatum 2014-11-19
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar zerokugi
Betalingswijze free
Ondersteunde Talen 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"
    ]
}