ChatGPT for zhihu

Display ChatGPT response alongside Zhihu Search results

ChatGPT for zhihuคืออะไร?

ChatGPT for zhihu เป็นส่วนขยายของ Chrome ที่พัฒนาโดย no13bus และคุณลักษณะหลักของมันคือ "Display ChatGPT response alongside Zhihu Search results"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT for zhihu

ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT for zhihu ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        此插件可以根据知乎的问题得到ChatGPT的回答结果,用户还可以复制此回答结果到表单中,作为问题答案的参考。Just have fun

version1.0.3更新:
1. 修复chatgpt返回的数据格式无法解析的问题

version1.0.2更新:
1. 支持知乎的夜间模式

version1.0.1更新:
1. 增加try again按钮,用户可以在当前页面重新请求chatgpt, 重新获取chatgpt知乎的回答内容                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ChatGPT for zhihu ChatGPT for zhihu
ID dgoinfidjelfolhnkaableghhppplbak
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chatgpt-for-zhihu/dgoinfidjelfolhnkaableghhppplbak
คำอธิบาย Display ChatGPT response alongside Zhihu Search results
ขนาดไฟล์ 28.82 KB
จำนวนการติดตั้ง 2,334
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2023-02-04
วันที่เผยแพร่ 2022-12-07
คะแนน 3.21/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา no13bus
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/1FvpFdRpMwnOblVsCOlAkrtgeyta3FgyaGuLuid2UbPo/edit?usp=sharing
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT for zhihu",
    "description": "Display ChatGPT response alongside Zhihu Search results",
    "version": "1.0.3",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "background": {
        "service_worker": "background\/index.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.zhihu.com\/question\/*"
            ],
            "include_globs": [
                "https:\/\/www.zhihu.com\/question\/*"
            ],
            "js": [
                "content-script\/index.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ]
}