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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}