Netflix Blur

Blur graphic content while watching Netflix TV Shows and Movies.

Netflix Blur là gì?

Netflix Blur là một tiện ích mở rộng Chrome được phát triển bởi dutiyesh, và tính năng chính của nó là "Blur graphic content while watching Netflix TV Shows and Movies.".

Ả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 Netflix Blur

Tải xuống các tệp mở rộng Netflix Blur 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

                        Netflix Blur is a chrome extension to blur graphic content while watching Netflix TV Shows and Movies.

How to use?
- Blur content by pressing Blur button from Player control icons or by pressing Keyboard B key.                    

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

Tên Netflix Blur Netflix Blur
ID aohjdecagmjlmhdbfibpifiogieheoim
URL Chính Thức https://chromewebstore.google.com/detail/netflix-blur/aohjdecagmjlmhdbfibpifiogieheoim
Mô tả Blur graphic content while watching Netflix TV Shows and Movies.
Kích Thước Tệp 14.26 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2022-12-22
Ngày Phát Hành 2021-01-24
Nhà Phát Triển dutiyesh
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dutiyesh/netflix-blur
URL Trang Chính Sách Bảo Mật https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Netflix Blur",
    "version": "1.1.0",
    "description": "Blur graphic content while watching Netflix TV Shows and Movies.",
    "icons": {
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/www.netflix.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ],
            "css": [
                "contentScript.css"
            ]
        }
    ]
}