Awoo

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

什麼是Awoo?

Awoo是由Darryl開發的Chrome擴展程式,該擴展的主要功能是“Automatically find and auto-play Halloween-themed episodes on Netflix!”。

擴展截圖

screenshot

下載Awoo擴展crx文件

下載Awoo擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Awoo Awoo
ID mcenajfoimechlkofjmcplnaneediadc
官方網址 https://chromewebstore.google.com/detail/awoo/mcenajfoimechlkofjmcplnaneediadc
簡介 Automatically find and auto-play Halloween-themed episodes on Netflix!
檔案大小 2.47 MB
安裝次數 25
目前版本 0.1
更新時間 2016-10-21
上架時間 2016-10-20
評分 5.00/5 共 1 次評分
開發者 Darryl
付費類型 free
支援的語言 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"
            ]
        }
    ]
}