ChatGPT for zhihu

Display ChatGPT response alongside Zhihu Search results

Cos'è ChatGPT for zhihu?

ChatGPT for zhihu è un'estensione di Chrome sviluppata da no13bus, e la sua funzione principale è "Display ChatGPT response alongside Zhihu Search results".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione ChatGPT for zhihu

Scarica i file di estensione ChatGPT for zhihu in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

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

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

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

Informazioni di Base sull'Estensione

Nome ChatGPT for zhihu ChatGPT for zhihu
ID dgoinfidjelfolhnkaableghhppplbak
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-for-zhihu/dgoinfidjelfolhnkaableghhppplbak
Descrizione Display ChatGPT response alongside Zhihu Search results
Dimensione del File 28.82 KB
Conteggio Installazioni 2,334
Versione Corrente 1.0.3
Ultimo Aggiornamento 2023-02-04
Data di Pubblicazione 2022-12-07
Valutazione 3.21/5 Totale 14 Valutazioni
Sviluppatore no13bus
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://docs.google.com/document/d/1FvpFdRpMwnOblVsCOlAkrtgeyta3FgyaGuLuid2UbPo/edit?usp=sharing
Lingue Supportate 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"
        }
    ]
}