YouTube Skip Chapter
Automatically skip chapters of YouTube videos you don't want to watch.
YouTube Skip Chapterคืออะไร?
YouTube Skip Chapter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย skeetsdev และคุณลักษณะหลักของมันคือ "Automatically skip chapters of YouTube videos you don't want to watch."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Skip Chapter
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Skip Chapter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Have you ever had a YouTube "mix" video that you really enjoy, except for just 2 or 3 songs in the middle? This extension allows you to skip just what you want to automatically by defining "skip words". If these words are found in a YouTube video's chapter title, that chapter will be skipped automatically. GitHub: https://github.com/skeets23/YouTube-Skip-Chapter-Chrome-Ext
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Skip Chapter |
ID | cjpkoghfjpkoapnmkppphegcmchghjdn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-skip-chapter/cjpkoghfjpkoapnmkppphegcmchghjdn |
คำอธิบาย | Automatically skip chapters of YouTube videos you don't want to watch. |
ขนาดไฟล์ | 103 KB |
จำนวนการติดตั้ง | 26 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2021-02-24 |
วันที่เผยแพร่ | 2020-11-30 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | skeetsdev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Skip Chapter", "description": "Automatically skip chapters of YouTube videos you don't want to watch.", "version": "1.0", "browser_action": { "default_icon": "youtube_skip_chapter.png", "default_title": "Click here to edit skip words", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "*:\/\/*.youtube.com\/watch*", "storage" ] } |