Netflixer

Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).

什么是Netflixer?

Netflixer是由MoCo开发的Chrome扩展程序,该扩展的主要功能是“Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).”。

下载Netflixer扩展crx文件

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

扩展使用说明

                        When you open Netflix you see two big billboards: one for the some originals (which will play automatically when you hover it including sound) and one for a specific Netflix original. This extension removes those billboards and adds a button in the header 'Show billboards' which will toggle these billboards (so you can still see them).                    

扩展基本信息

名称 Netflixer Netflixer
ID hfgjopmkbmeincmdahgpogmdakekgilm
官方URL https://chrome.google.com/webstore/detail/netflixer/hfgjopmkbmeincmdahgpogmdakekgilm
简介 Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).
文件大小 37.6 KB
安装次数 417
当前版本 1.0.0
更新时间 2016-09-13
上架时间 2016-09-13
评分 4.57/5 共7次评分
开发者 MoCo
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflixer",
    "version": "1.0.0",
    "manifest_version": 2,
    "icons": {
        "16": "res\/nf-logo-16.png",
        "48": "res\/nf-logo-48.png",
        "128": "res\/nf-logo-128.png"
    },
    "description": "Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ]
}