ChatGPT Deeplink
Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
什么是ChatGPT Deeplink?
ChatGPT Deeplink是由Paul Arterburn开发的Chrome扩展程序,该扩展的主要功能是“Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.”。
扩展截图
下载ChatGPT Deeplink扩展crx文件
下载ChatGPT Deeplink扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        This adds a URL parameter to ChatGPT so you can deep link to start new conversations from other applications (like Raycast). The URL scheme is: https://chat.openai.com/?query=your+query+here
It also adds a custom search engine to Chrome, so in the Omnibox you can type `ai {query}`. Triggering this command may either be a space or tab, depending on your settings (chrome://settings/searchEngines).                     扩展基本信息
| 名称 |   |  
| ID | bmkbpmkcppdmkdbpihmijgeilchgeapo | 
| 官方URL | https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo | 
| 简介 | Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation. | 
| 文件大小 | 12.55 KB | 
| 安装次数 | 83 | 
| 当前版本 | 1.1 | 
| 更新时间 | 2023-08-08 | 
| 上架时间 | 2023-08-07 | 
| 评分 | 5.00/5 共5次评分 | 
| 开发者 | Paul Arterburn | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 扩展官网 | https://chat.openai.com | 
| 帮助页面URL | https://twitter.com/parterburn | 
| 支持的语言 | en-US | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Deeplink",
    "description": "Adds a url parameter to ChatGPT so that https:\/\/chat.openai.com\/?query=your+query+here starts a conversation.",
    "version": "1.1",
    "homepage_url": "https:\/\/chat.openai.com",
    "omnibox": {
        "keyword": "ai"
    },
    "permissions": [
        "scripting",
        "webNavigation",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_popup": "settings.html"
    }
}  |  |