Awoo

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

Cos'è Awoo?

Awoo è un'estensione di Chrome sviluppata da Darryl, e la sua funzione principale è "Automatically find and auto-play Halloween-themed episodes on Netflix!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Awoo

Scarica i file di estensione Awoo in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Awoo Awoo
ID mcenajfoimechlkofjmcplnaneediadc
URL Ufficiale https://chromewebstore.google.com/detail/awoo/mcenajfoimechlkofjmcplnaneediadc
Descrizione Automatically find and auto-play Halloween-themed episodes on Netflix!
Dimensione del File 2.47 MB
Conteggio Installazioni 25
Versione Corrente 0.1
Ultimo Aggiornamento 2016-10-21
Data di Pubblicazione 2016-10-20
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Darryl
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}