LazyGPT
我真的不想再打字了
LazyGPTคืออะไร?
LazyGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย team_oakmega และคุณลักษณะหลักของมันคือ "我真的不想再打字了"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LazyGPT
ดาวน์โหลดไฟล์ส่วนขยาย LazyGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
這個 Extension 可以幫助懶得打字和 ChatGPT 聊天的你,直接用對話的方式和他溝通。
開始語音辨識: ctrl + shift + L (or P)
切換中英語言: ctrl + shift + O
所有聲音都是在你的瀏覽器解析並且轉換成文字,沒有任何資料會傳給我,放心地使用吧!
v 1.0.2
增加快捷鍵 cmd + shift + L 避免部分電腦會開啟印表機
v 1.0.1
排除 OpenAI 更改前端 routing 產生 content_script 無法運作的錯誤 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | gacgildcphkglggndmdehplpjmgfgjnk |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/lazygpt/gacgildcphkglggndmdehplpjmgfgjnk |
| คำอธิบาย | 我真的不想再打字了 |
| ขนาดไฟล์ | 113 KB |
| จำนวนการติดตั้ง | 33 |
| เวอร์ชันปัจจุบัน | 1.0.2 |
| อัปเดตครั้งล่าสุด | 2023-07-19 |
| วันที่เผยแพร่ | 2023-04-05 |
| ผู้พัฒนา | team_oakmega |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "LazyGPT",
"description": "\u6211\u771f\u7684\u4e0d\u60f3\u518d\u6253\u5b57\u4e86",
"version": "1.0.2",
"icons": {
"16": ".\/images\/icon.png",
"48": ".\/images\/icon.png",
"128": ".\/images\/icon.png"
},
"action": {
"default_title": "LazyGPT",
"default_icon": {
"16": ".\/images\/icon.png",
"48": ".\/images\/icon.png",
"128": ".\/images\/icon.png"
},
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/chat\/*",
"https:\/\/chat.openai.com\/*"
],
"js": [
"content-script.js"
]
}
],
"commands": {
"start-record": {
"suggested_key": {
"default": "Ctrl+Shift+P"
},
"description": "\u958b\u59cb\u8a9e\u97f3\u8fa8\u8b58"
},
"start-record-dev": {
"suggested_key": {
"default": "Ctrl+Shift+L"
},
"description": "\u958b\u59cb\u8a9e\u97f3\u8fa8\u8b582"
},
"toggle-language": {
"suggested_key": {
"default": "Ctrl+Shift+O"
},
"description": "\u66f4\u6539\u8a9e\u8a00"
}
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https:\/\/chat.openai.com\/*"
]
} | |