Plex skipper

Plex skipper

Automatically clicks the 'Skip Intro', 'Skip Credits' and 'Play next' buttons on Plex.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Plex skipper",
  "description": "__MSG_extDescription__",
  "version": "2.1.1",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "64": "icon/64.png",
    "128": "icon/128.png",
    "256": "icon/256.png"
  },
  "permissions": [
    "storage"
  ],
  "default_locale": "en",
  "action": {
    "default_title": "Plex skipper",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://app.plex.tv/*",
        "http://*/web/*"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ]
}