ChatGPT Custom Shortcuts Pro

ChatGPT Custom Shortcuts Pro

Custom keyboard shortcuts for ChatGPT: set keys to scroll up or down, copy, join all responses, new chat, and toggle the sidebar.

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 Custom Shortcuts Pro",
  "description": "Custom keyboard shortcuts for ChatGPT: set keys to scroll up or down, copy, join all responses, new chat, and toggle the sidebar.",
  "version": "1.1.1.4",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*",
        "*://*.chatgpt.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*"
      ],
      "matches": [
        "*://chat.openai.com/*",
        "*://*.chatgpt.com/*"
      ]
    }
  ]
}