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.”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Netflix Blur Netflix Blur
ID aohjdecagmjlmhdbfibpifiogieheoim
官方網址 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"
            ]
        }
    ]
}