ChatGPT Code Runner
Run and save the code in ChatGPT. Supports upto 70+ languages.
Cos'è ChatGPT Code Runner?
ChatGPT Code Runner è un'estensione di Chrome sviluppata da Haseeb Mir, e la sua funzione principale è "Run and save the code in ChatGPT. Supports upto 70+ languages.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ChatGPT Code Runner
Scarica i file di estensione ChatGPT Code Runner in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | fockdiafolhhflpicbmbnjhiokejaikk |
| URL Ufficiale | https://chromewebstore.google.com/detail/chatgpt-code-runner/fockdiafolhhflpicbmbnjhiokejaikk |
| Descrizione | Run and save the code in ChatGPT. Supports upto 70+ languages. |
| Dimensione del File | 18.42 KB |
| Conteggio Installazioni | 495 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2023-05-24 |
| Data di Pubblicazione | 2023-05-15 |
| Valutazione | 3.50/5 Totale 4 Valutazioni |
| Sviluppatore | Haseeb Mir |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/haseeb-heaven/ChatGPT-CodeRunner-Extension |
| URL della Pagina della Politica sulla Privacy | https://heavensplugins.godaddysites.com/privacy |
| Lingue Supportate | 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"
}
} | |