Awoo

Awoo

Automatically find and auto-play Halloween-themed episodes on Netflix!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Awoo",
  "description": "Automatically find and auto-play Halloween-themed episodes on Netflix!",
  "version": "0.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Stream a random Halloween-themed episode from Netflix."
  },
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ]
}