Youtube Hider

This is a Chrome extension to hide videos and images on YouTube.

Youtube Hiderคืออะไร?

Youtube Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Miri Ahn และคุณลักษณะหลักของมันคือ "This is a Chrome extension to hide videos and images on YouTube."

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

screenshot
screenshot
screenshot

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

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

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

                        You can toggle a visibility of a group of Youtube elements on the list below, respectively:
- Video
- Video thumbnail
- User profile photo

Update 1.1 (2019/11/25) 
- Added a button to enable or disable all checkboxes.                    

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

ชื่อ Youtube Hider Youtube Hider
ID cnaimccmiafebfliaiefkdfmdffgmjph
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph
คำอธิบาย This is a Chrome extension to hide videos and images on YouTube.
ขนาดไฟล์ 8.85 KB
จำนวนการติดตั้ง 60
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2019-11-29
วันที่เผยแพร่ 2019-11-29
คะแนน 4.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Miri Ahn
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/kameru/youtube-hider/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Hider",
    "version": "1.1",
    "description": "This is a Chrome extension to hide videos and images on YouTube.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "hidingController.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "hide_thumb.css",
        "hide_video.css",
        "hide_icon.css",
        "popup.js",
        "hidingController.js"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "page_action": {
        "default_icon": "images\/hide.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}