Netfix

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

Netfix là gì?

Netfix là một tiện ích mở rộng Chrome được phát triển bởi metermaid, và tính năng chính của nó là "Netflix fixes: movies go to pages instead of playing, removes sliders, shows ratings, and hides bad recommendations and rated items".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Netfix

Tải xuống các tệp mở rộng Netfix dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Netfix Netfix
ID cpgbdfpoaalclikhghccccakifaoboam
URL Chính Thức https://chromewebstore.google.com/detail/netfix/cpgbdfpoaalclikhghccccakifaoboam
Mô tả Netflix fixes: movies go to pages instead of playing, removes sliders, shows ratings, and hides bad recommendations and rated items
Kích Thước Tệp 2.65 MB
Số Lần Cài Đặt 3,429
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2015-01-30
Ngày Phát Hành 2015-01-30
Đánh Giá 3.94/5 Tổng số 50 Đánh Giá
Nhà Phát Triển metermaid
Loại Thanh Toán free
Trang Web Mở Rộng http://www.github.com/metermaid/netfix
URL Trang Trợ Giúp https://github.com/metermaid/netfix/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}