Netflix Blur

Blur graphic content while watching Netflix TV Shows and Movies.

Netflix Blurคืออะไร?

Netflix Blur เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dutiyesh และคุณลักษณะหลักของมันคือ "Blur graphic content while watching Netflix TV Shows and Movies."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Blur

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            ]
        }
    ]
}