Netfix

Netfix removes the auto playing previews on Netflix.

Netfix là gì?

Netfix là một tiện ích mở rộng Chrome được phát triển bởi Samuel Kadolph, và tính năng chính của nó là "Netfix removes the auto playing previews on Netflix.".

Ả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

                        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                    

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

Tên Netfix Netfix
ID dlceeplebocldajolniciioiliocihco
URL Chính Thức https://chromewebstore.google.com/detail/netfix/dlceeplebocldajolniciioiliocihco
Mô tả Netfix removes the auto playing previews on Netflix.
Kích Thước Tệp 14.26 KB
Số Lần Cài Đặt 216
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2017-12-10
Ngày Phát Hành 2017-12-09
Đánh Giá 3.33/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Samuel Kadolph
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/samuelkadolph/netfix
Ngôn Ngữ Được Hỗ Trợ 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"
}