Examine source code of ChatGPT Shortcut - Open from the Address Bar

Inspect and view changes in ChatGPT Shortcut - Open from the Address Bar source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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.4",
  "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/",
    "https://chatgpt.com/"
  ]
}