YouTube Intro Skipper
A Chrome extension for starting YouTube videos at predefined start time
YouTube Intro Skipperคืออะไร?
YouTube Intro Skipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hcwtam และคุณลักษณะหลักของมันคือ "A Chrome extension for starting YouTube videos at predefined start time"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Intro Skipper
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Intro Skipper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
AdBlock is, without a doubt, one of the best things that have happened to mankind. What if you also want to skip the usual intro/ads in the beginning videos of your favourite channels? Yes, you can fast forward manually, but it can get tedious. We proudly present, Youtube Skipper. Configure target channels, set start time, forget about it. Don't give me excuses, GIVE ME RESULTS!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Intro Skipper |
ID | bkidjicmopimhpebecifcejncihnfgjj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-intro-skipper/bkidjicmopimhpebecifcejncihnfgjj |
คำอธิบาย | A Chrome extension for starting YouTube videos at predefined start time |
ขนาดไฟล์ | 18.59 KB |
จำนวนการติดตั้ง | 196 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2022-11-13 |
วันที่เผยแพร่ | 2022-11-13 |
คะแนน | 3.86/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | hcwtam |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Intro Skipper", "description": "A Chrome extension for starting YouTube videos at predefined start time", "version": "0.1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/www.youtube.com\/" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" } } |