Codeforces Solutions

Want to post your solution and read others solution like in LeetCode? This extension is all you need.

什么是Codeforces Solutions?

Codeforces Solutions是由samuellaskar3开发的Chrome扩展程序,该扩展的主要功能是“Want to post your solution and read others solution like in LeetCode? This extension is all you need.”。

扩展截图

screenshot
screenshot
screenshot

下载Codeforces Solutions扩展crx文件

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

扩展使用说明

                        Have you ever felt the need of solutions features in codeforces like we have in leetcode?
This extension is all you need. 
* You can post your own solution.
* You can read others best rated solution.
* Comment on others solution.
* Get Solution right after contest ends.

How to use it?
* After installing it, it will place two buttons on every codeforces problem page. One for "see solutions" and other "write solution".
* If you are stuck in a problem and you want to see the best solution, click on "see solution" and it would take you to the solution which is there in github issues. 
* If you want to post your solution (please do so), click on "write solution", it would take you to github with new issue tab, template would be already provided to you. Just paste your solution there and put some explanation and thus help others. 

Privacy
Don't worry, it will only access codeforces website, also extension code is open source. 

Hope you enjoy it.                    

扩展基本信息

名称 Codeforces Solutions Codeforces Solutions
ID ojeklbemjjglhffombiogeabanjkofhl
官方URL https://chromewebstore.google.com/detail/codeforces-solutions/ojeklbemjjglhffombiogeabanjkofhl
简介 Want to post your solution and read others solution like in LeetCode? This extension is all you need.
文件大小 7.47 KB
安装次数 34
当前版本 1.0
更新时间 2024-01-01
上架时间 2024-01-01
开发者 samuellaskar3
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://aktarcompany.blogspot.com/2023/12/codeforces-solutions-privacy-policy.html
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0",
    "name": "Codeforces Solutions",
    "description": "Want to post your solution and read others solution like in LeetCode? This extension is all you need.",
    "permissions": [
        "https:\/\/codeforces.com\/*"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codeforces.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}