Screenshot Shortcut Customizer

Allows users to customize the shortcut key (Shift+A) for taking screenshots from YouTube videos, catering to individual preferences or avoiding conflicts with existing keyboard shortcuts.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Name",
  "description": "__MSG_description__",
  "version": "4.0.0",
  "icons": {
    "96": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options/index.html"
  },
  "permissions": [
    "storage",
    "clipboardWrite",
    "notifications"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{97ee2f55-3183-491d-89ba-247298fbd370}"
    }
  }
}