Ask ChatGPT
Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!
什么是Ask ChatGPT?
Ask ChatGPT是由codemonument开发的Chrome扩展程序,该扩展的主要功能是“Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!”。
扩展截图
下载Ask ChatGPT扩展crx文件
下载Ask ChatGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This Extension brings the power of ChatGPT right into your Chrome OmniBar! How to use it: 1. Open a new Tab 2. Type: "gpt", followed by a space* * If you already have a shortcut called gpt, you might need to press TAB instead of space to activate the extension 3. Insert any query you like and press enter 4. You will be redirected to chat.openai.com and your query will be inserted and submitted automatically! Extra Feature: The extension tries to detect whether you're logged into ChatGPT or not. If you see the message "You seem to not be logged in! Please log in at https://chat.openai.com/auth/login" you can press enter and you'll be directly redirected to the login page!
扩展基本信息
名称 | Ask ChatGPT |
ID | kfjlbdhonplbiikgogomppidenoaichc |
官方URL | https://chromewebstore.google.com/detail/ask-chatgpt/kfjlbdhonplbiikgogomppidenoaichc |
简介 | Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)! |
文件大小 | 112 KB |
安装次数 | 3,181 |
当前版本 | 1.0.1 |
更新时间 | 2023-03-05 |
上架时间 | 2023-03-03 |
评分 | 5.00/5 共1次评分 |
开发者 | codemonument |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/codemonument/chrome-ask-gpt |
帮助页面URL | https://github.com/codemonument/chrome-ask-gpt/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ask ChatGPT", "description": "Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!", "version": "1.0.1", "manifest_version": 3, "author": "[email protected]", "omnibox": { "keyword": "gpt" }, "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "scripting" ], "host_permissions": [ "http:\/\/chat.openai.com\/*", "https:\/\/chat.openai.com\/*" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "icons": { "16": "assets\/icon_16x16.png", "32": "assets\/icon_32x32.png", "64": "assets\/icon_64x64.png", "128": "assets\/icon_128x128.png", "256": "assets\/icon_256x256.png", "512": "assets\/icon_512x512.png" } } |