ChatGPT Deeplink

Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.

ChatGPT Deeplink là gì?

ChatGPT Deeplink là một tiện ích mở rộng Chrome được phát triển bởi Paul Arterburn, và tính năng chính của nó là "Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Deeplink

Tải xuống các tệp mở rộng ChatGPT Deeplink dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT Deeplink ChatGPT Deeplink
ID bmkbpmkcppdmkdbpihmijgeilchgeapo
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo
Mô tả Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
Kích Thước Tệp 12.55 KB
Số Lần Cài Đặt 83
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-08-08
Ngày Phát Hành 2023-08-07
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Paul Arterburn
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://chat.openai.com
URL Trang Trợ Giúp https://twitter.com/parterburn
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}