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
官方URL 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"
            ]
        }
    ]
}