PyCAT: Python ChatGPT Assistant Teacher
ChatGPT assistant teacher for Python study
什麼是PyCAT: Python ChatGPT Assistant Teacher?
PyCAT: Python ChatGPT Assistant Teacher是由askteachme開發的Chrome擴展程式,該擴展的主要功能是“ChatGPT assistant teacher for Python study”。
擴展截圖
下載PyCAT: Python ChatGPT Assistant Teacher擴展crx文件
下載PyCAT: Python ChatGPT Assistant Teacher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
ChatGPT assistant teacher for Python study
파이썬 언어 학습을 도와주는 ChatGPT 보조교사 擴展基本資訊
| 名稱 | |
| ID | ccknmpbdlgccobnjidaclkmebeojmlia |
| 官方網址 | https://chromewebstore.google.com/detail/pycat-python-chatgpt-assi/ccknmpbdlgccobnjidaclkmebeojmlia |
| 簡介 | ChatGPT assistant teacher for Python study |
| 檔案大小 | 20.56 KB |
| 安裝次數 | 112 |
| 目前版本 | 0.1.2 |
| 更新時間 | 2023-12-14 |
| 上架時間 | 2023-07-18 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | askteachme |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 隱私政策頁面URL | https://sg-kim.github.io/pycat |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "PyCAT: Python ChatGPT Assistant Teacher",
"version": "0.1.2",
"description": "ChatGPT assistant teacher for Python study",
"author": {
"email": "[email protected]"
},
"icons": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"96": "images\/icon-96.png"
},
"action": {
"default_popup": "popup.html"
},
"background": {
"service_worker": "service_worker.min.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*"
],
"js": [
"assistant_agent.min.js"
]
}
],
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https:\/\/www.minitee.kr\/*"
]
} | |