Awoo

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

Hvad er Awoo?

Awoo er en Chrome-udvidelse udviklet af Darryl, og dens hovedfunktion er "Automatically find and auto-play Halloween-themed episodes on Netflix!".

Udvidelsesskærmbilleder

screenshot

Download Awoo-udvidelses-CRX-fil

Download Awoo-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Awoo Awoo
ID mcenajfoimechlkofjmcplnaneediadc
Officiel URL https://chromewebstore.google.com/detail/awoo/mcenajfoimechlkofjmcplnaneediadc
Beskrivelse Automatically find and auto-play Halloween-themed episodes on Netflix!
Filstørrelse 2.47 MB
Antal Installationer 25
Nuværende Version 0.1
Senest Opdateret 2016-10-21
Udgivelsesdato 2016-10-20
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Darryl
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}