ChatGPT for zhihu

Display ChatGPT response alongside Zhihu Search results

什么是ChatGPT for zhihu?

ChatGPT for zhihu是由no13bus开发的Chrome扩展程序,该扩展的主要功能是“Display ChatGPT response alongside Zhihu Search results”。

扩展截图

screenshot
screenshot

下载ChatGPT for zhihu扩展crx文件

下载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"
        }
    ]
}