AutoSkipper

AutoSkipper

Add features to your favorite anime sites!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AutoSkipper",
  "description": "Add features to your favorite anime sites!",
  "author": "Louis Dresbach",
  "version": "1",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "storage",
    "tabs",
    "notifications"
  ],
  "icons": {
    "16": "Icon16px.png",
    "48": "Icon48px.png",
    "128": "Icon128px.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.gogoanime.lu/*-episode-*",
        "*://*.gogoanime.ee/*-episode-*",
        "*://*.gogoanime.dk/*-episode-*",
        "*://*.gogoanime.tel/*-episode-*",
        "*://*.bs.to/serie/*/*",
        "*://*.burningseries.ac/serie/*/*",
        "*://*.burningseries.co/serie/*/*",
        "*://*.burningseries.cx/serie/*/*",
        "*://*.burningseries.nz/serie/*/*",
        "*://*.burningseries.se/serie/*/*",
        "*://*.burningseries.tw/serie/*/*",
        "*://*.burningseries.vc/serie/*/*",
        "*://*.crunchyroll.com/*/*/*",
        "*://9anime.id/watch/*/*",
        "*://animedao.lol/watch/*-episode-*"
      ],
      "js": [
        "constants.js",
        "content-script.js"
      ]
    },
    {
      "matches": [
        "*://*.goload.io/streaming.php?*",
        "*://*.gogohd.net/streaming.php?*",
        "*://*.streamsss.net/e/*",
        "*://*.vupload.com/v/*",
        "*://*.streamz.ws/wdu?*",
        "*://*.videovard.sx/e/*",
        "*://*.vidoza.net/embed-*",
        "*://*.streamtape.com/e/*",
        "*://mplayer.sbs/default.php?id=*",
        "*://aniplay.sbs/stream/*"
      ],
      "css": [
        "embedded.css"
      ],
      "js": [
        "constants.js",
        "embedded.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "constants.js",
        "inject.js",
        "anime-titles.xml",
        "timestamps.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}