Anime Skip Player

Anime Skip Player

Custom video player that provides the best anime watching experience, has fully customizable keyboard shortcuts, and auto-skips intros, outros, credits, filler, and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Anime Skip Player",
  "description": "Custom video player for anime streaming websites.",
  "version": "2.0.2",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{0442d98f-4ecc-4859-a65a-13e5969da46b}",
      "strict_min_version": "109.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.anime-skip.com/*"
      ],
      "js": [
        "content-scripts/anime-skip.js"
      ]
    },
    {
      "matches": [
        "*://aniwatch.to/watch/*"
      ],
      "all_frames": false,
      "js": [
        "content-scripts/aniwatch-helper.js"
      ]
    },
    {
      "matches": [
        "*://megacloud.tv/e/embed-*",
        "*://watchsb.com/e/*"
      ],
      "all_frames": true,
      "css": [
        "content-scripts/aniwatch-player.css"
      ],
      "js": [
        "content-scripts/aniwatch-player.js"
      ]
    },
    {
      "matches": [
        "*://aniwave.to/watch/*"
      ],
      "all_frames": false,
      "js": [
        "content-scripts/aniwave-helper.js"
      ]
    },
    {
      "matches": [
        "*://mcloud.bz/e/*",
        "*://vidplay.online/e/*",
        "*://www.mp4upload.com/embed-*"
      ],
      "all_frames": true,
      "css": [
        "content-scripts/aniwave-player.css"
      ],
      "js": [
        "content-scripts/aniwave-player.js"
      ]
    },
    {
      "matches": [
        "*://www.crunchyroll.com/*"
      ],
      "all_frames": false,
      "js": [
        "content-scripts/crunchyroll-helper.js"
      ]
    },
    {
      "matches": [
        "*://static.crunchyroll.com/vilos-v2/web/vilos/player.html"
      ],
      "all_frames": true,
      "css": [
        "content-scripts/crunchyroll-player.css"
      ],
      "js": [
        "content-scripts/crunchyroll-player.js"
      ]
    },
    {
      "matches": [
        "*://mcloud.bz/e/*",
        "*://megacloud.tv/e/embed-*",
        "*://static.crunchyroll.com/vilos-v2/web/vilos/player.html",
        "*://vidplay.online/e/*",
        "*://watchsb.com/e/*",
        "*://www.mp4upload.com/embed-*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content-scripts/keydown-blocker.js"
      ]
    }
  ]
}