ChatGPT Deeplink

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

What is ChatGPT Deeplink?

ChatGPT Deeplink is a Chrome extension developed by Paul Arterburn, and its main feature is "Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.".

Extension Screenshots

screenshot

Download ChatGPT Deeplink Extension CRX File

Download ChatGPT Deeplink extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name ChatGPT Deeplink ChatGPT Deeplink
ID bmkbpmkcppdmkdbpihmijgeilchgeapo
Official URL https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo
Description Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
File Size 12.55 KB
Installation Count 83
Current Version 1.1
Last Updated 2023-08-08
Publish Date 2023-08-07
Rating 5.00/5 Total 5 Ratings
Developer Paul Arterburn
Email [email protected]
Payment Type free
Extension Website https://chat.openai.com
Help Page URL https://twitter.com/parterburn
Supported Languages 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"
    }
}