AtCoder VirtualContest-Connect
AtCoderのバーチャル参加を疑似的に本番と繋げます
Cos'è AtCoder VirtualContest-Connect?
AtCoder VirtualContest-Connect è un'estensione di Chrome sviluppata da kiruto398, e la sua funzione principale è "AtCoderのバーチャル参加を疑似的に本番と繋げます".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AtCoder VirtualContest-Connect
Scarica i file di estensione AtCoder VirtualContest-Connect 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
                        ※本拡張機能は非公式です。ご利用は自己責任でお願いします。
VCCはバーチャルコンテストの成績をコンテスト本番で取った場合の成績を表示します。
ポップアップを使うことで問題ページやAtCoder以外のページでも残り時間やスコア、成績を確認することができます。
現在の機能:
バーチャル順位表ページの上部
・バーチャルコンテスト中に、現在のスコアがコンテスト本番でどのような順位/Perfになるかをリアルタイム的に表示
・バーチャルコンテストで取ったスコアが最終的にどのような順位/Perfになるかを表示(非表示可)
・これらの情報をRatedのみと全ての参加者での表示の切り替えボタン
・最終的な成績のツイートボタン
拡張機能のポップアップ(ブラウザの拡張機能アイコンをクリック)
・バーチャル順位表の情報に加え、残り時間, スコア, 時間を表示
バーチャル参加ページ
・バーチャル参加のツイートボタン
お知らせ
・'現在の順位'の変動をよりコンテスト本番での動きに近づけました。
ソースコード:https://github.com/kiruto398/Atcoder-VirtualContest-connect
連絡先:https://twitter.com/whileTrue398                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | cedjfjpgichjfeaaijciagaoggpagipg | 
| URL Ufficiale | https://chromewebstore.google.com/detail/atcoder-virtualcontest-co/cedjfjpgichjfeaaijciagaoggpagipg | 
| Descrizione | AtCoderのバーチャル参加を疑似的に本番と繋げます | 
| Dimensione del File | 88.64 KB | 
| Conteggio Installazioni | 103 | 
| Versione Corrente | 1.1.3.1 | 
| Ultimo Aggiornamento | 2022-05-02 | 
| Data di Pubblicazione | 2021-08-04 | 
| Valutazione | 5.00/5 Totale 1 Valutazioni | 
| Sviluppatore | kiruto398 | 
| [email protected] | |
| Tipo di Pagamento | free | 
| Lingue Supportate | 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"
    ]
}  |  |