YouHide
Hides viewed videos on Youtube's subscriptions page
YouHideคืออะไร?
YouHide เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Maxime Cousinou และคุณลักษณะหลักของมันคือ "Hides viewed videos on Youtube's subscriptions page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouHide
ดาวน์โหลดไฟล์ส่วนขยาย YouHide ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Automatically hides viewed and partially viewed items and shorts. Alternate between hidden, quasi-transparent and original display.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouHide |
ID | gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youhide/gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
คำอธิบาย | Hides viewed videos on Youtube's subscriptions page |
ขนาดไฟล์ | 10.28 KB |
จำนวนการติดตั้ง | 336 |
เวอร์ชันปัจจุบัน | 2.0.2 |
อัปเดตครั้งล่าสุด | 2024-01-13 |
วันที่เผยแพร่ | 2017-09-08 |
คะแนน | 3.88/5 รวมทั้งหมด 17 คะแนน |
ผู้พัฒนา | Maxime Cousinou |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouHide", "description": "Hides viewed videos on Youtube's subscriptions page", "version": "2.0.2", "icons": { "128": "icon.png" }, "action": { "default_icon": { "16": "icon-hidden.png", "38": "[email protected]" }, "default_title": "Toggle" }, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "injected.js" ], "css": [ "injected.css" ] } ] } |