Contest Standings

Shows standings with updated names from codeforces

什么是Contest Standings?

Contest Standings是由BigBag开发的Chrome扩展程序,该扩展的主要功能是“Shows standings with updated names from codeforces”。

扩展截图

screenshot
screenshot
screenshot

下载Contest Standings扩展crx文件

下载Contest Standings扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Shows standings of team contests with updated names from codeforces. Also, the total rating of each team is shown. Works on snarknews' platforms and yandex.contest. For the first one also shows the list of all teams sorted by their rating.                    

扩展基本信息

名称 Contest Standings Contest Standings
ID jmhjngpdfdmgmngfmbbjkmnpmfcbbcii
官方URL https://chromewebstore.google.com/detail/contest-standings/jmhjngpdfdmgmngfmbbjkmnpmfcbbcii
简介 Shows standings with updated names from codeforces
文件大小 105 KB
安装次数 66
当前版本 3.3.5
更新时间 2021-11-09
上架时间 2020-04-18
评分 5.00/5 共2次评分
开发者 BigBag
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Contest Standings",
    "short_name": "Contest Standings",
    "version": "3.3.5",
    "description": "Shows standings with updated names from codeforces",
    "manifest_version": 2,
    "icons": {
        "16": "static\/icon16.png",
        "32": "static\/icon32.png",
        "48": "static\/icon48.png",
        "128": "static\/icon128.png"
    },
    "permissions": [
        "background",
        "http:\/\/codeforces.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "include.js",
                "third_party\/jquery.js",
                "updateStandings.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "http:\/\/*.snarknews.info\/*",
                "http:\/\/opencup.ru\/*",
                "https:\/\/official.contest.yandex.ru\/*",
                "https:\/\/official.contest.yandex.com\/*",
                "https:\/\/contest.yandex.ru\/*",
                "https:\/\/contest.yandex.com\/*",
                "http:\/\/*.mipt.ru\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "include.js",
            "third_party\/jquery.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Contest Standings",
        "default_icon": "static\/icon16.png",
        "default_popup": "popup.html"
    }
}