ChatGPT Deeplink

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

Wat is ChatGPT Deeplink?

ChatGPT Deeplink is een Chrome-extensie ontwikkeld door Paul Arterburn, en de belangrijkste functie is "Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ChatGPT Deeplink

Download ChatGPT Deeplink-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam ChatGPT Deeplink ChatGPT Deeplink
ID bmkbpmkcppdmkdbpihmijgeilchgeapo
Officiële URL https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo
Beschrijving Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
Bestandsgrootte 12.55 KB
Aantal Installaties 83
Huidige Versie 1.1
Laatst Bijgewerkt 2023-08-08
Publicatiedatum 2023-08-07
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar Paul Arterburn
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://chat.openai.com
Help Pagina-URL https://twitter.com/parterburn
Ondersteunde Talen 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"
    }
}