YouTube DeSpoiler
Hides total video length and some other information on YouTube.
YouTube DeSpoilerคืออะไร?
YouTube DeSpoiler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย santaworkshopdev และคุณลักษณะหลักของมันคือ "Hides total video length and some other information on YouTube."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube DeSpoiler
ดาวน์โหลดไฟล์ส่วนขยาย YouTube DeSpoiler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Hides total video length and some other information on YouTube. This extension is mainly intended for eSports VODs, where the total length of the match, or the time remaining, can be a spoiler by itself. Features: - Hides total video length in main player, search results, and suggestions. - Hides progress bar in main player and search results. - Hides suggestion titles and thumbnails (hover to reveal). - Since seeking by progress bar is no longer possible, adds seek buttons to the main player. > Note that you can still use YouTube's ←, →, J and L shortcuts as normal. - Toggle the extension by clicking the extension icon. - Toggle the progress bar for current video only by clicking the hourglass button in main player.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube DeSpoiler |
ID | fmihhkhicphlbbfdclmmjdohegbplgmo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-despoiler/fmihhkhicphlbbfdclmmjdohegbplgmo |
คำอธิบาย | Hides total video length and some other information on YouTube. |
ขนาดไฟล์ | 33.07 KB |
จำนวนการติดตั้ง | 74 |
เวอร์ชันปัจจุบัน | 0.4.2 |
อัปเดตครั้งล่าสุด | 2021-05-26 |
วันที่เผยแพร่ | 2020-10-30 |
คะแนน | 4.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | santaworkshopdev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube DeSpoiler", "description": "Hides total video length and some other information on YouTube.", "version": "0.4.2", "icons": { "16": "favicon\/on\/favicon-16x16.png", "32": "favicon\/on\/favicon-32x32.png", "128": "favicon\/on\/favicon-128x128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "despoiler.js" ], "run_at": "document_start" } ], "browser_action": { "default_title": "YouTube DeSpoiler" }, "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "despoiler-site.css", "despoiler-video.css" ] } |