YouTube Blur

Avoid distractions on YouTube by blurring the thumbnails on the homepage

YouTube Blurคืออะไร?

YouTube Blur เป็นส่วนขยายของ Chrome ที่พัฒนาโดย codedbyleo และคุณลักษณะหลักของมันคือ "Avoid distractions on YouTube by blurring the thumbnails on the homepage"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Blur ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        With YouTube Blur you'll be able to focus on your work, education or creativity without getting distracted by YouTube's recommended videos in the homepage.

Simply install the extension on chrome, toggle on the YouTube Blur switch, and prepare for a new level of focus!

PRIVACY
I do not read, examine or track your browser history or any other personal information. The only permissions required for are "tabs" to insert the functionality and "storage" to store your settings.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Blur YouTube Blur
ID kdokcakcfbknongpohpabejbmoocddhh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh
คำอธิบาย Avoid distractions on YouTube by blurring the thumbnails on the homepage
ขนาดไฟล์ 17.86 KB
จำนวนการติดตั้ง 569
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-09-27
วันที่เผยแพร่ 2021-09-24
คะแนน 4.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา codedbyleo
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Blur",
    "description": "Avoid distractions on YouTube by blurring the thumbnails on the homepage",
    "manifest_version": 3,
    "version": "1.0.0",
    "icons": {
        "128": "icon_128.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/"
            ],
            "js": [
                "blur.js"
            ]
        }
    ]
}