Binge-Watch Tracker

Binge-Watch Tracker

Creates playlist for TV shows. Loop over episodes and seasons at ease.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Binge-Watch Tracker",
  "description": "Creates playlist for TV shows. Loop over episodes and seasons at ease.",
  "version": "1.0",
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Binge-Watch Tracker!"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png"
  },
  "background": [
    {
      "scripts": [
        "js/jquery.min.js",
        "js/background.js",
        "js/materialize.js",
        "js/materialize.min.js",
        "js/popup.js",
        "js/analytics.js"
      ],
      "persistent": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "page": [
        "popup.html"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "storage",
    "http://zentrasoft.com/seriesplaylist/api/"
  ]
}