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.”。
擴展截圖
下載ChatGPT Code Runner擴展crx文件
下載ChatGPT Code Runner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | fockdiafolhhflpicbmbnjhiokejaikk |
官方網址 | 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" } } |