Codeforces Solutions

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

Codeforces Solutions là gì?

Codeforces Solutions là một tiện ích mở rộng Chrome được phát triển bởi samuellaskar3, và tính năng chính của nó là "Want to post your solution and read others solution like in LeetCode? This extension is all you need.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Codeforces Solutions

Tải xuống các tệp mở rộng Codeforces Solutions dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Codeforces Solutions Codeforces Solutions
ID ojeklbemjjglhffombiogeabanjkofhl
URL Chính Thức https://chromewebstore.google.com/detail/codeforces-solutions/ojeklbemjjglhffombiogeabanjkofhl
Mô tả Want to post your solution and read others solution like in LeetCode? This extension is all you need.
Kích Thước Tệp 7.47 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2024-01-01
Ngày Phát Hành 2024-01-01
Nhà Phát Triển samuellaskar3
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://aktarcompany.blogspot.com/2023/12/codeforces-solutions-privacy-policy.html
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}