Netfix

Netflix fixes: movies go to pages instead of playing, removes sliders, shows ratings, and hides bad recommendations and rated items

什么是Netfix?

Netfix是由metermaid开发的Chrome扩展程序,该扩展的主要功能是“Netflix fixes: movies go to pages instead of playing, removes sliders, shows ratings, and hides bad recommendations and rated items”。

扩展截图

screenshot

下载Netfix扩展crx文件

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

扩展使用说明

                        This extension changes the interface of Netflix for the better!

On all pages:
- Movies and TV Shows go to their info pages rather than auto playing.
- Ratings are shown inline!

On the homepage:
- Bad recommendations and rated items are hidden.
- Slow sliders are replaced with fast dropdowns.

0.0.3 bug fix update: Netflix was throttling this extension for too many requests, so the logic has been switched around a bit. Requests are smaller, and the homepage will not direct you to specific genre pages rather than load all the movies at once. On the bright side, it should load much faster.
0.0.2 update: options page! Choose which features to use, and what ratings to hide.

This extension is not affiliated with Netflix.                    

扩展基本信息

名称 Netfix Netfix
ID cpgbdfpoaalclikhghccccakifaoboam
官方URL https://chromewebstore.google.com/detail/netfix/cpgbdfpoaalclikhghccccakifaoboam
简介 Netflix fixes: movies go to pages instead of playing, removes sliders, shows ratings, and hides bad recommendations and rated items
文件大小 2.65 MB
安装次数 3,429
当前版本 0.0.3
更新时间 2015-01-30
上架时间 2015-01-30
评分 3.94/5 共50次评分
开发者 metermaid
付费类型 free
扩展官网 http://www.github.com/metermaid/netfix
帮助页面URL https://github.com/metermaid/netfix/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netfix",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "homepage_url": "http:\/\/www.github.com\/metermaid\/netfix",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "options_page": "options\/index.html",
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "js\/jquery-2.0.3.min.map"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.netflix.com\/*",
                "http:\/\/*.netflix.ca\/*"
            ],
            "css": [
                "css\/netfix.css"
            ],
            "js": [
                "js\/jquery-2.0.3.min.js",
                "js\/netfix.js"
            ]
        }
    ]
}