Atcoder Friend Standings

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

什麼是Atcoder Friend Standings?

Atcoder Friend Standings是由zerokugi開發的Chrome擴展程式,該擴展的主要功能是“Atcoder の Standings に Friend 機能を追加します”。

下載Atcoder Friend Standings擴展crx文件

下載Atcoder Friend Standings擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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


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

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

擴展基本資訊

名稱 Atcoder Friend Standings Atcoder Friend Standings
ID apoegnjnclihjjlighifiojbocjnbbgm
官方網址 https://chrome.google.com/webstore/detail/atcoder-friend-standings/apoegnjnclihjjlighifiojbocjnbbgm
簡介 Atcoder の Standings に Friend 機能を追加します
檔案大小 44.77 KB
安裝次數 111
目前版本 1.14
更新時間 2014-11-19
上架時間 2014-11-19
評分 5.00/5 共 4 次評分
開發者 zerokugi
付費類型 free
支援的語言 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"
    ]
}