AtCoder VirtualContest-Connect

AtCoderのバーチャル参加を疑似的に本番と繋げます

What is AtCoder VirtualContest-Connect?

AtCoder VirtualContest-Connect is a Chrome extension developed by kiruto398, and its main feature is "AtCoderのバーチャル参加を疑似的に本番と繋げます".

Extension Screenshots

screenshot
screenshot

Download AtCoder VirtualContest-Connect Extension CRX File

Download AtCoder VirtualContest-Connect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        ※本拡張機能は非公式です。ご利用は自己責任でお願いします。

VCCはバーチャルコンテストの成績をコンテスト本番で取った場合の成績を表示します。
ポップアップを使うことで問題ページやAtCoder以外のページでも残り時間やスコア、成績を確認することができます。

現在の機能:
バーチャル順位表ページの上部
・バーチャルコンテスト中に、現在のスコアがコンテスト本番でどのような順位/Perfになるかをリアルタイム的に表示
・バーチャルコンテストで取ったスコアが最終的にどのような順位/Perfになるかを表示(非表示可)
・これらの情報をRatedのみと全ての参加者での表示の切り替えボタン
・最終的な成績のツイートボタン

拡張機能のポップアップ(ブラウザの拡張機能アイコンをクリック)
・バーチャル順位表の情報に加え、残り時間, スコア, 時間を表示

バーチャル参加ページ
・バーチャル参加のツイートボタン

お知らせ
・'現在の順位'の変動をよりコンテスト本番での動きに近づけました。


ソースコード:https://github.com/kiruto398/Atcoder-VirtualContest-connect
連絡先:https://twitter.com/whileTrue398                    

Extension Basic Information

Name AtCoder VirtualContest-Connect AtCoder VirtualContest-Connect
ID cedjfjpgichjfeaaijciagaoggpagipg
Official URL https://chromewebstore.google.com/detail/atcoder-virtualcontest-co/cedjfjpgichjfeaaijciagaoggpagipg
Description AtCoderのバーチャル参加を疑似的に本番と繋げます
File Size 88.64 KB
Installation Count 103
Current Version 1.1.3.1
Last Updated 2022-05-02
Publish Date 2021-08-04
Rating 5.00/5 Total 1 Ratings
Developer kiruto398
Email [email protected]
Payment Type free
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AtCoder VirtualContest-Connect",
    "short_name": "acvc-connect",
    "version": "1.1.3.1",
    "manifest_version": 2,
    "description": "AtCoder\u306e\u30d0\u30fc\u30c1\u30e3\u30eb\u53c2\u52a0\u3092\u7591\u4f3c\u7684\u306b\u672c\u756a\u3068\u7e4b\u3052\u307e\u3059",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_title": "acvc-connect",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/atcoder.jp\/contests\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "resources\/*.png"
    ]
}