Atcoder Friend Standings

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

Qu'est-ce que Atcoder Friend Standings ?

Atcoder Friend Standings est une extension Chrome développée par zerokugi, et sa fonction principale est "Atcoder の Standings に Friend 機能を追加します".

Télécharger le fichier CRX de l'extension Atcoder Friend Standings

Téléchargez les fichiers d'extension Atcoder Friend Standings au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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


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

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

Informations de Base sur l'Extension

Nom Atcoder Friend Standings Atcoder Friend Standings
ID apoegnjnclihjjlighifiojbocjnbbgm
URL Officiel https://chrome.google.com/webstore/detail/atcoder-friend-standings/apoegnjnclihjjlighifiojbocjnbbgm
Description Atcoder の Standings に Friend 機能を追加します
Taille du Fichier 44.77 KB
Nombre d'Installations 111
Version Actuelle 1.14
Dernière Mise à Jour 2014-11-19
Date de Publication 2014-11-19
Évaluation 5.00/5 Total 4 Évaluations
Développeur zerokugi
Type de Paiement free
Langues Prises en Charge 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"
    ]
}