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」です。
拡張機能のスクリーンショット
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知乎的回答内容
拡張機能の基本情報
名前 | |
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 |
Eメール | [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" } ] } |