RunGPT: Execute ChatGPT Code
RunGPT: Execute ChatGPT Code - run/execute code directly in ChatGPT with a single click! Web requests, data parsing, plots & more!
什麼是RunGPT: Execute ChatGPT Code?
RunGPT: Execute ChatGPT Code是由AI Chat Systems開發的Chrome擴展程式,該擴展的主要功能是“RunGPT: Execute ChatGPT Code - run/execute code directly in ChatGPT with a single click! Web requests, data parsing, plots & more!”。
擴展截圖
下載RunGPT: Execute ChatGPT Code擴展crx文件
下載RunGPT: Execute ChatGPT Code擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
🚀 RunGPT is an easy-to-use extension that lets you execute code snippets directly within OpenAI chat. Test, debug and build apps in real-time.
👨💻 Write & execute in many languages: Python, JavaScript, Ruby, and more. Test algorithms, explore APIs, or build full-fledged apps right within the chat.
💻 Load and parse data: Use it to make web requests and load data from APIs or websites. Parse and process data using your preferred programming language.
📊 Analyze and visualize data: Use popular libraries like matplotlib, seaborn, pandas, and plotly to create beautiful and informative data visualizations.
📎 Attach Files option: Easily send additional files along with your code snippets. Whether it's a custom library or module, an image, or a table, you can now use them directly within your executed code.
📝 Edit/Modify code feature: With RunGPT, you can also edit and modify your code snippets directly within the chat. Easily make changes and see the results in real-time without the need to switch to a different environment. This feature allows you to streamline your coding process and make adjustments quickly and efficiently.
🛠️ Test and debug code: Quickly prototype and test different coding approaches, experiment with new libraries and frameworks.
🔒 Safe and secure: Enjoy the benefits of a remote sandboxed execution system. No need to install anything on your computer, test your code instantly without any risk.
⏩ So why wait? Download RunGPT today and start coding directly within ChatGPT! 擴展基本資訊
| 名稱 | |
| ID | ddfiefcjflpdpanadjmgpogkfnjaifod |
| 官方網址 | https://chromewebstore.google.com/detail/rungpt-execute-chatgpt-co/ddfiefcjflpdpanadjmgpogkfnjaifod |
| 簡介 | RunGPT: Execute ChatGPT Code - run/execute code directly in ChatGPT with a single click! Web requests, data parsing, plots & more! |
| 檔案大小 | 147 KB |
| 安裝次數 | 2,038 |
| 目前版本 | 1.34 |
| 更新時間 | 2023-04-25 |
| 上架時間 | 2023-02-28 |
| 評分 | 3.27/5 共 15 次評分 |
| 開發者 | AI Chat Systems |
| 電子郵箱 | [email protected] |
| 付費類型 | in_app |
| 擴展官網 | https://rungpt.online |
| 說明頁面URL | https://rungpt.online |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "RunGPT: Execute ChatGPT Code",
"version": "1.34",
"manifest_version": 3,
"description": "RunGPT: Execute ChatGPT Code - run\/execute code directly in ChatGPT with a single click! Web requests, data parsing, plots & more!",
"icons": {
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"16": "icons\/icon16.png",
"128": "icons\/icon128.png"
},
"permissions": [],
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*"
],
"js": [
"codemirror.js",
"jszip.min.js",
"contentScript.js",
"highlight.min.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"codemirror.js",
"jszip.min.js",
"highlight.min.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';",
"script-src": [
"'self'",
"file:"
]
}
} | |