Hide YouTube Thumbnails

Hide YouTube Thumbnails for less clickbaity browsing

Hide YouTube Thumbnailsคืออะไร?

Hide YouTube Thumbnails เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Adam Jones และคุณลักษณะหลักของมันคือ "Hide YouTube Thumbnails for less clickbaity browsing"

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

screenshot

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

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

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

                        Simply hides thumbnails on YouTube to have a more peaceful and less distracting browsing experience. Also useful for avoiding spoilers or inappropriate imagery.

Options available:
- Temporarily turn off hiding
- Blur rather than hide thumbnails
- Show thumbnails on hover
- Show only solid color
- Show thumbnails on search results / playlist / watch / subscriptions / channel pages

This extsion could also be descibed as blocking YouTube thumbnails on videos, disabling YouTube thumbnails on videos, blurring YouTube thumbnails on videos. People have found it useful for:
- Hiding distracting or inappropriate YouTube thumbnails in class when teaching students
- Hiding YouTube thumbnails to reduce distraction and procrastination when studying or working
- Hiding YouTube thumbnails to avoid spoilers in the video                    

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

ชื่อ Hide YouTube Thumbnails Hide YouTube Thumbnails
ID phmcfcbljjdlomoipaffekhgfnpndbef
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hide-youtube-thumbnails/phmcfcbljjdlomoipaffekhgfnpndbef
คำอธิบาย Hide YouTube Thumbnails for less clickbaity browsing
ขนาดไฟล์ 26.04 KB
จำนวนการติดตั้ง 56,897
เวอร์ชันปัจจุบัน 2.5.0
อัปเดตครั้งล่าสุด 2023-10-31
วันที่เผยแพร่ 2019-04-12
คะแนน 4.83/5 รวมทั้งหมด 83 คะแนน
ผู้พัฒนา Adam Jones
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/domdomegg/hideytthumbnails-extension
URL หน้าช่วยเหลือ https://github.com/domdomegg/hideytthumbnails-extension/issues
URL หน้านโยบายความเป็นส่วนตัว https://adamjones.me/privacy-policies
ภาษาที่รองรับ de,en,fr,nl,es,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.5.0",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "homepage_url": "https:\/\/github.com\/domdomegg\/hideytthumbnails-extension",
    "browser_specific_settings": {
        "gecko": {
            "id": "{17c4514d-71fa-4633-8c07-1fe0b354c885}"
        },
        "gecko_android": []
    },
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "512": "img\/icon512.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "common.js",
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "permissions": [
        "storage"
    ]
}