YT Skip Ads
This extension attempts to skip the YouTube ads automatically
YT Skip Adsคืออะไร?
YT Skip Ads เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Furqan และคุณลักษณะหลักของมันคือ "This extension attempts to skip the YouTube ads automatically"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YT Skip Ads
ดาวน์โหลดไฟล์ส่วนขยาย YT Skip Ads ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension basically automates two things for you, so you can save yourselves a few seconds of time and avoid mundane tasks: 1. Auto-skips those 5 second ads on YouTube: YouTube usually plays ads before the videos, and these ads have a countdown timer of around 5 seconds before the ad can be skipped using the "Skip Ad" button, which only appears after few seconds. This extension tries to skip the ad immediately and automatically for you, even before the ad countdown timer ends. This works when the ad is a "skippable" ad. 2. Dismisses those annoying overlay ads that appear over the video at the bottom, with a remarkably small button to close them.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YT Skip Ads |
ID | lahknfhfeikbpljolkheigimmcfhplga |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/yt-skip-ads/lahknfhfeikbpljolkheigimmcfhplga |
คำอธิบาย | This extension attempts to skip the YouTube ads automatically |
ขนาดไฟล์ | 17.31 KB |
จำนวนการติดตั้ง | 34 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2021-09-14 |
วันที่เผยแพร่ | 2021-09-14 |
ผู้พัฒนา | Furqan |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YT Skip Ads", "description": "This extension attempts to skip the YouTube ads automatically", "version": "1.0", "page_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "YouTube Skip Ads" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "src\/css\/main.css" ], "js": [ "src\/js\/dom-watcher.js" ], "run_at": "document_end" } ] } |