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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🚀 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 |
| 공식 URL | 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:"
]
}
} | |