Awoo

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

Co to jest Awoo?

Awoo to rozszerzenie Chrome opracowane przez Darryl, a jego główną funkcją jest „Automatically find and auto-play Halloween-themed episodes on Netflix!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Awoo

Pobierz pliki rozszerzeń Awoo w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Awoo Awoo
ID mcenajfoimechlkofjmcplnaneediadc
Oficjalny URL https://chromewebstore.google.com/detail/awoo/mcenajfoimechlkofjmcplnaneediadc
Opis Automatically find and auto-play Halloween-themed episodes on Netflix!
Rozmiar pliku 2.47 MB
Liczba instalacji 25
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2016-10-21
Data Publikacji 2016-10-20
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Darryl
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}