Codeforces Solutions

A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…

Codeforces Solutionsとは何ですか?

Codeforces SolutionsはNavpreet Singhによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…」です。

拡張機能のスクリーンショット

screenshot
screenshot

Codeforces Solutions拡張機能のCRXファイルをダウンロード

Codeforces Solutions拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A chrome extension to get all submitted solutions of a particular problem.

How it works?

Download this extension.
Then browse any codeforces problem and click on the extension.
You get all submitted solutions!                    

拡張機能の基本情報

名前 Codeforces Solutions Codeforces Solutions
ID iegpelnggolflcmkmjnhmfhjlnfpbefj
公式URL https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj
説明 A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
ファイルサイズ 35.71 KB
インストール数 443
現在のバージョン 0.3
最終更新日 2023-06-22
公開日 2023-06-20
評価 5.00/5 合計 1 レビュー
開発者 Navpreet Singh
Eメール [email protected]
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Codeforces Solutions",
    "version": "0.3",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codeforces.com\/*",
                "http:\/\/codeforces.com\/*"
            ],
            "js": [
                "jquery-3.5.0.min.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}