YouTube Skip Ads
YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'
YouTube Skip Adsคืออะไร?
YouTube Skip Ads เป็นส่วนขยายของ Chrome ที่พัฒนาโดย admin และคุณลักษณะหลักของมันคือ "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Skip Ads
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Skip Ads ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. This addon auto clicks the 'skip ad button'
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jnhhfkebfgdllkmohmfhdmhkfooolbmb |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-skip-ads/jnhhfkebfgdllkmohmfhdmhkfooolbmb |
คำอธิบาย | YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button' |
ขนาดไฟล์ | 12.73 KB |
จำนวนการติดตั้ง | 3,053 |
เวอร์ชันปัจจุบัน | 1.0.6 |
อัปเดตครั้งล่าสุด | 2022-10-31 |
วันที่เผยแพร่ | 2022-10-31 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | admin |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Skip Ads", "short_name": "YouTube Skip Ads", "description": "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'", "manifest_version": 3, "version": "1.0.6", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_yt.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "128": "logob.png" } } |