CPGPT - Competitive Programming Assistant

An competitive programming assistant using ChatGPT.

CPGPT - Competitive Programming Assistantคืออะไร?

CPGPT - Competitive Programming Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://singularitylabs-ai.github.io และคุณลักษณะหลักของมันคือ "An competitive programming assistant using ChatGPT."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CPGPT - Competitive Programming Assistant

ดาวน์โหลดไฟล์ส่วนขยาย CPGPT - Competitive Programming Assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Generates hints and references when you browse a problem on a competitive programming website. Leetcode, spoj, codeforces , 19 such competitive programming platforms are currently supported. Check out our website(github) for details of supported competitive programming platforms. Feel free to send a pull request if you need for any other website.

No ChatGPT Plus plan required.

LEGAL:
Disclaimer: CPGPT extension is not official ChatGPT or OpenAI™ application. It is an unofficial extension that is developed and maintained independently and has no affiliation to OpenAI .

Disclaimer: Please do not use this for live contests. It is primarily meant for speeding up the learning process. We hold no responsibility if your account gets banned for using it in a live contest.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ CPGPT - Competitive Programming Assistant CPGPT - Competitive Programming Assistant
ID cedjhhjppifnfkfkgoflfeddidedofcg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cpgpt-competitive-program/cedjhhjppifnfkfkgoflfeddidedofcg
คำอธิบาย An competitive programming assistant using ChatGPT.
ขนาดไฟล์ 336 KB
จำนวนการติดตั้ง 194
เวอร์ชันปัจจุบัน 0.1.7
อัปเดตครั้งล่าสุด 2024-02-01
วันที่เผยแพร่ 2023-05-05
ผู้พัฒนา https://singularitylabs-ai.github.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ishandutta2007/chatgpt-competitive-programming-extension
URL หน้าช่วยเหลือ https://github.com/ishandutta2007/chatgpt-competitive-programming-extension/issues
URL หน้านโยบายความเป็นส่วนตัว https://singularitylabs-ai.github.io/privacypolicy
ภาษาที่รองรับ de,en,fr,es,hu,pt-PT,ro,ru,uk,iw,zh-CN,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.1.7",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.spoj.com\/*",
                "https:\/\/codeforces.com\/*",
                "https:\/\/leetcode.com\/*",
                "https:\/\/projecteuler.net\/problem=*",
                "https:\/\/www.codechef.com\/*",
                "http:\/\/poj.org\/problem?id=*",
                "https:\/\/www.interviewbit.com\/problems\/*",
                "https:\/\/atcoder.jp\/*",
                "https:\/\/www.hackerrank.com\/challenges\/*",
                "https:\/\/www.hackerearth.com\/*",
                "https:\/\/open.kattis.com\/problems\/*",
                "https:\/\/dmoj.ca\/problem\/*",
                "https:\/\/acm.timus.ru\/problem.aspx*",
                "https:\/\/www.eolymp.com\/en\/problems\/*",
                "https:\/\/community.topcoder.com\/stat?c=problem_statement*",
                "https:\/\/lightoj.com\/problem\/*",
                "https:\/\/toph.co\/p\/*",
                "https:\/\/my.newtonschool.co\/playground\/code\/*",
                "https:\/\/cses.fi\/*",
                "https:\/\/codedrills.io\/problems\/*",
                "https:\/\/www.pramp.com\/*",
                "https:\/\/www.algoexpert.io\/questions\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ]
        }
    ]
}