ChatGPT Code Runner

Run and save the code in ChatGPT. Supports upto 70+ languages.

ChatGPT Code Runner란 무엇입니까?

ChatGPT Code Runner은(는) Haseeb Mir에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Run and save the code in ChatGPT. Supports upto 70+ languages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

ChatGPT Code Runner 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Run and save the code in ChatGPT directly in your browser, Supports upto 70+ languages.

Installation Guide.
1.Head over to Jdoodle Compiler API (https://www.jdoodle.com/compiler-api/) and create account
2.Go to Credentials and copy them.
3.Go to Plugin settings and add your Credentials and hit save.
4.Now Ask ChatGPT to Write a program and hit "Run Code" or "Save Code".

📝 Say goodbye to lost code - with Chat-GPT Code Runner, you can easily save your code locally for future reference and easy access.

🎨 Customize your coding environment to match your style with a variety of cool themes to choose from.

🔧 With the power of the JDoodle Compiler API, debugging your code has never been easier!

🎉 And the best part? You have complete control over your coding environment with the ability to customize button themes and output types.

💻 Code in over 70 programming languages with ease! Chat-GPT Code Runner offers a versatile and flexible coding experience for developers of all levels.

💾 Download Chat-GPT Code Runner today and start coding like a pro!
Github Source : https://github.com/haseeb-heaven/ChatGPT-CodeRunner-Extension                    

확장 프로그램 기본 정보

이름 ChatGPT Code Runner ChatGPT Code Runner
ID fockdiafolhhflpicbmbnjhiokejaikk
공식 URL https://chromewebstore.google.com/detail/chatgpt-code-runner/fockdiafolhhflpicbmbnjhiokejaikk
설명 Run and save the code in ChatGPT. Supports upto 70+ languages.
파일 크기 18.42 KB
설치 횟수 495
현재 버전 1.0
최근 업데이트 2023-05-24
출시 날짜 2023-05-15
평점 3.50/5 총 4 개의 평점
개발자 Haseeb Mir
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/haseeb-heaven/ChatGPT-CodeRunner-Extension
개인정보 보호 정책 페이지 URL https://heavensplugins.godaddysites.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Code Runner",
    "version": "1.0",
    "description": "Run and save the code in ChatGPT. Supports upto 70+ languages.",
    "permissions": [
        "storage",
        "clipboardRead"
    ],
    "host_permissions": [
        "https:\/\/api.jdoodle.com\/v1\/execute",
        "*:\/\/*\/*"
    ],
    "options_page": "options\/options.html",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "48": "icons\/48.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "scripts\/content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}