ChatGPT Deeplink

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

Vad är ChatGPT Deeplink?

ChatGPT Deeplink är en Chrome-tillägg utvecklad av Paul Arterburn, och dess huvudfunktion är "Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.".

Tilläggsskärmbilder

screenshot

Ladda ner ChatGPT Deeplink-förlängningens CRX-fil

Ladda ner ChatGPT Deeplink-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn ChatGPT Deeplink ChatGPT Deeplink
ID bmkbpmkcppdmkdbpihmijgeilchgeapo
Officiell webbadress https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo
Beskrivning Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
Filstorlek 12.55 KB
Antal Installationer 83
Aktuell Version 1.1
Senast Uppdaterad 2023-08-08
Publiceringsdatum 2023-08-07
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare Paul Arterburn
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://chat.openai.com
Hjälpsida URL https://twitter.com/parterburn
Stödda Språk 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"
    }
}