Binge Easy

Binge Easy

Binge Easy allows you to binge watch your favourite shows/videos on Youtube / Netflix / Prime by skipping ads and themeIntros

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Binge Easy",
  "short_name": "Binge Easy",
  "description": "Binge Easy allows you to binge watch your favourite shows/videos on Youtube / Netflix / Prime by skipping ads and themeIntros",
  "manifest_version": 2,
  "version": "0.0.3",
  "author": "Arvind Iyengar",
  "homepage_url": "https://iyengararvind.github.io/BingeEasyExtn/",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.netflix.com/*",
        "*://*.primevideo.com/*"
      ],
      "js": [
        "env.js",
        "main.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "64": "static/mainLogo64.png",
    "128": "static/mainLogo128.png",
    "256": "static/mainLogo256.png",
    "512": "static/mainLogo512.png"
  }
}