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"
            ]
        }
    ]
}