ChatGPT Code Runner
Run and save the code in ChatGPT. Supports upto 70+ languages.
ChatGPT Code Runner là gì?
ChatGPT Code Runner là một tiện ích mở rộng Chrome được phát triển bởi Haseeb Mir, và tính năng chính của nó là "Run and save the code in ChatGPT. Supports upto 70+ languages.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Code Runner
Tải xuống các tệp mở rộng ChatGPT Code Runner 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ChatGPT Code Runner |
ID | fockdiafolhhflpicbmbnjhiokejaikk |
URL Chính Thức | https://chromewebstore.google.com/detail/chatgpt-code-runner/fockdiafolhhflpicbmbnjhiokejaikk |
Mô tả | Run and save the code in ChatGPT. Supports upto 70+ languages. |
Kích Thước Tệp | 18.42 KB |
Số Lần Cài Đặt | 495 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2023-05-24 |
Ngày Phát Hành | 2023-05-15 |
Đánh Giá | 3.50/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Haseeb Mir |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/haseeb-heaven/ChatGPT-CodeRunner-Extension |
URL Trang Chính Sách Bảo Mật | https://heavensplugins.godaddysites.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |