Netfix

Netfix removes the auto playing previews on Netflix.

什么是Netfix?

Netfix是由Samuel Kadolph开发的Chrome扩展程序,该扩展的主要功能是“Netfix removes the auto playing previews on Netflix.”。

扩展截图

screenshot

下载Netfix扩展crx文件

下载Netfix扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Tired of Netflix's auto playing preview ads? Install this extension and those will be disabled!

Code available at https://github.com/samuelkadolph/netfix.

Report issues at https://github.com/samuelkadolph/netfix/issues.

Changelog:

v0.3.0
- Switched to block network requests for the preview videos
- Added option to turn preview blocking on and off

v0.2.0
- Added options page
- Added option to hide the whole billboard instead of just the preview video

v0.1.7
- Replaced placeholder 16x16 icon

v0.1.6
- Now removes the preview video when returning to the browse page                    

扩展基本信息

名称 Netfix Netfix
ID dlceeplebocldajolniciioiliocihco
官方URL https://chromewebstore.google.com/detail/netfix/dlceeplebocldajolniciioiliocihco
简介 Netfix removes the auto playing previews on Netflix.
文件大小 14.26 KB
安装次数 216
当前版本 0.3.0
更新时间 2017-12-10
上架时间 2017-12-09
评分 3.33/5 共12次评分
开发者 Samuel Kadolph
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/samuelkadolph/netfix
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "javascripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "javascripts\/netfix.js"
            ],
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ]
        }
    ],
    "description": "Netfix removes the auto playing previews on Netflix.",
    "icons": {
        "16": "images\/icon16.png",
        "38": "images\/icon38.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2,
    "name": "Netfix",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "https:\/\/*.nflxvideo.net\/*",
        "https:\/\/www.netflix.com\/*",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "short_name": "Netfix",
    "version": "0.3.0"
}