Awoo

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

What is Awoo?

Awoo is a Chrome extension developed by Darryl, and its main feature is "Automatically find and auto-play Halloween-themed episodes on Netflix!".

Extension Screenshots

screenshot

Download Awoo Extension CRX File

Download Awoo extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Inspired by old Halloween marathons like ABC's 13 Nights of Halloween, Awoo helps you automatically find a mix of Halloween-themed episodes of sitcoms, dramas, etc, on Netflix and plays them at random. When you're finished with an episode, it'll play the next.                    

Extension Basic Information

Name Awoo Awoo
ID mcenajfoimechlkofjmcplnaneediadc
Official URL https://chromewebstore.google.com/detail/awoo/mcenajfoimechlkofjmcplnaneediadc
Description Automatically find and auto-play Halloween-themed episodes on Netflix!
File Size 2.47 MB
Installation Count 25
Current Version 0.1
Last Updated 2016-10-21
Publish Date 2016-10-20
Rating 5.00/5 Total 1 Ratings
Developer Darryl
Payment Type free
Supported Languages en
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"
            ]
        }
    ]
}