PotPlayer YouTube Shortcut, Open Links

PotPlayer YouTube Shortcut, Open Links

Quickly play or add a Youtube video (playlist), Twitch, direct video links to Potplayer from the context menu or using the buttons on the site and also via middle-click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "depresjon",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "buttons.css"
      ],
      "js": [
        "content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icon_16.png",
      "32": "icon_32.png"
    },
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "storage",
    "tabs"
  ],
  "short_name": "__MSG_extName__",
  "version": "1.24",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "53.0"
    }
  }
}