Netflix Blur
Blur graphic content while watching Netflix TV Shows and Movies.
什么是Netflix Blur?
Netflix Blur是由dutiyesh开发的Chrome扩展程序,该扩展的主要功能是“Blur graphic content while watching Netflix TV Shows and Movies.”。
扩展截图
下载Netflix Blur扩展crx文件
下载Netflix Blur扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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.                     扩展基本信息
| 名称 |   |  
| ID | aohjdecagmjlmhdbfibpifiogieheoim | 
| 官方URL | https://chromewebstore.google.com/detail/netflix-blur/aohjdecagmjlmhdbfibpifiogieheoim | 
| 简介 | Blur graphic content while watching Netflix TV Shows and Movies. | 
| 文件大小 | 14.26 KB | 
| 安装次数 | 20 | 
| 当前版本 | 1.1.0 | 
| 更新时间 | 2022-12-22 | 
| 上架时间 | 2021-01-24 | 
| 开发者 | dutiyesh | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 扩展官网 | https://github.com/dutiyesh/netflix-blur | 
| 隐私政策页面URL | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md | 
| 支持的语言 | 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"
            ]
        }
    ]
}  |  |