ChatGPT Deeplink

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

Cos'è ChatGPT Deeplink?

ChatGPT Deeplink è un'estensione di Chrome sviluppata da Paul Arterburn, e la sua funzione principale è "Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ChatGPT Deeplink

Scarica i file di estensione ChatGPT Deeplink in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome ChatGPT Deeplink ChatGPT Deeplink
ID bmkbpmkcppdmkdbpihmijgeilchgeapo
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo
Descrizione Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
Dimensione del File 12.55 KB
Conteggio Installazioni 83
Versione Corrente 1.1
Ultimo Aggiornamento 2023-08-08
Data di Pubblicazione 2023-08-07
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore Paul Arterburn
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://chat.openai.com
URL della Pagina di Aiuto https://twitter.com/parterburn
Lingue Supportate 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"
    }
}