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…”。
扩展截图
下载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!                     扩展基本信息
| 名称 |   |  
| 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 | 
| 电子邮箱 | [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"
    }
}  |  |