ChatGPT Deeplink

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

Apa itu ChatGPT Deeplink?

ChatGPT Deeplink adalah ekstensi Chrome yang dikembangkan oleh Paul Arterburn, dan fitur utamanya adalah "Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi ChatGPT Deeplink

Unduh file ekstensi ChatGPT Deeplink dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama ChatGPT Deeplink ChatGPT Deeplink
ID bmkbpmkcppdmkdbpihmijgeilchgeapo
URL Resmi https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo
Deskripsi Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
Ukuran File 12.55 KB
Jumlah Instalasi 83
Versi Saat Ini 1.1
Terakhir Diperbarui 2023-08-08
Tanggal Publikasi 2023-08-07
Penilaian 5.00/5 Total 5 Penilaian
Pengembang Paul Arterburn
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://chat.openai.com
URL Halaman Bantuan https://twitter.com/parterburn
Bahasa yang Didukung 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"
    }
}