ChatGPT for Google Colab
Embed ChatGPT inside Google Colab.
ChatGPT for Google Colab란 무엇입니까?
ChatGPT for Google Colab은(는) Ali H. Kudeir에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Embed ChatGPT inside Google Colab."입니다.
확장 프로그램 스크린샷
ChatGPT for Google Colab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This open-source extension provides a user-friendly interface to interact with ChatGPT inside Google Colab. Interact with ChatGPT inside each code cell and save time and effort learning, fixing, and improving your Jupyter notebooks. Features: * Free * Markdown rendering * Dark, and Light mode * Copy to clipboard * All features supported by your ChatGPT account. * Pre-made prompts for code fixing, refactoring, summarizing, explaining, and adding comments. * Adapting to newly added code cells. Source code: https://github.com/ali-h-kudeir/chatgpt-google-colab
확장 프로그램 기본 정보
이름 | ChatGPT for Google Colab |
ID | dfhfeifekpgapdlhfakecbbinnnfoohh |
공식 URL | https://chromewebstore.google.com/detail/chatgpt-for-google-colab/dfhfeifekpgapdlhfakecbbinnnfoohh |
설명 | Embed ChatGPT inside Google Colab. |
파일 크기 | 183 KB |
설치 횟수 | 8,591 |
현재 버전 | 1.2.3 |
최근 업데이트 | 2023-08-28 |
출시 날짜 | 2023-02-09 |
평점 | 4.86/5 총 64 개의 평점 |
개발자 | Ali H. Kudeir |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://alihkudeir.com/chatgpt-for-google-colab |
도움말 페이지 URL | https://twitter.com/ali_h_kudeir |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.2.3", "manifest_version": 3, "icons": { "16": "logo.png", "32": "logo.png", "48": "logo.png", "128": "logo.png" }, "host_permissions": [ "https:\/\/*.openai.com\/" ], "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": [], "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "https:\/\/colab.research.google.com\/*", "https:\/\/github.com\/*" ], "js": [ "content-script.js" ], "css": [ "content-script.css" ] } ] } |