Atcoder Friend Standings

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

Cos'è Atcoder Friend Standings?

Atcoder Friend Standings è un'estensione di Chrome sviluppata da zerokugi, e la sua funzione principale è "Atcoder の Standings に Friend 機能を追加します".

Scarica il file CRX dell'estensione Atcoder Friend Standings

Scarica i file di estensione Atcoder Friend Standings in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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


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

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

Informazioni di Base sull'Estensione

Nome Atcoder Friend Standings Atcoder Friend Standings
ID apoegnjnclihjjlighifiojbocjnbbgm
URL Ufficiale https://chrome.google.com/webstore/detail/atcoder-friend-standings/apoegnjnclihjjlighifiojbocjnbbgm
Descrizione Atcoder の Standings に Friend 機能を追加します
Dimensione del File 44.77 KB
Conteggio Installazioni 111
Versione Corrente 1.14
Ultimo Aggiornamento 2014-11-19
Data di Pubblicazione 2014-11-19
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore zerokugi
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}