ChatGPT for address bar
Use ChatGPT from your address bar
什么是ChatGPT for address bar?
ChatGPT for address bar是由Dreampunk开发的Chrome扩展程序,该扩展的主要功能是“Use ChatGPT from your address bar”。
扩展截图
下载ChatGPT for address bar扩展crx文件
下载ChatGPT for address bar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Just type "chat" and your prompt to make your browsing experience faster and more efficient with ChatGPT. No API Key required. Try the most secure ChatGPT extension.
扩展基本信息
名称 | |
ID | kohabooomphnoedeinhfkdijpmbegmfi |
官方URL | https://chrome.google.com/webstore/detail/chatgpt-for-address-bar/kohabooomphnoedeinhfkdijpmbegmfi |
简介 | Use ChatGPT from your address bar |
文件大小 | 8.59 KB |
安装次数 | 133 |
当前版本 | 1.3.1 |
更新时间 | 2023-03-27 |
上架时间 | 2023-02-06 |
评分 | 3.50/5 共6次评分 |
开发者 | Dreampunk |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://dataplay.cl/timeless-youtube |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT for address bar", "version": "1.3.1", "description": "Use ChatGPT from your address bar", "permissions": [ "tabs", "activeTab" ], "icons": { "16": "16.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "background": { "service_worker": "event_page.js" }, "omnibox": { "keyword": "chat", "suggestion": { "imageUrl": "16.png" } } } |