ChatGPT Shortcut - Open from the Address Bar

ChatGPT Shortcut - Open from the Address Bar

Start a new ChatGPT conversation from the address bar. Type 'GPT' followed by your prompt in the address bar to open a new ChatGPT…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Shortcut - Open from the Address Bar",
  "description": "",
  "version": "1.2",
  "action": {
    "default_icon": "public/icon.png",
    "default_popup": "public/popup.html",
    "default_title": "ChatGPT Shortcut - Open from the Address Bar"
  },
  "icons": {
    "48": "public/icon.png"
  },
  "omnibox": {
    "keyword": "gpt"
  },
  "background": {
    "service_worker": "public/background.js"
  },
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://chat.openai.com/"
  ]
}