YouTube Background Ad Skip Extension
Automatically Skip ads on YouTube. This is not an ad blocker
YouTube Background Ad Skip Extensionคืออะไร?
YouTube Background Ad Skip Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Krysp_Coder และคุณลักษณะหลักของมันคือ "Automatically Skip ads on YouTube. This is not an ad blocker"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Background Ad Skip Extension
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Background Ad Skip Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Automatically skip YouTube ads when the ad is able to be skipped. When an ad has the option to be skipped within 5 seconds the extension will skip the ad for you immediately. This does not block ads or skip ads that do not originally have the option to be skipped.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Background Ad Skip Extension |
ID | ncbifbdnlggnffchafbdiefobpabajkb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb |
คำอธิบาย | Automatically Skip ads on YouTube. This is not an ad blocker |
ขนาดไฟล์ | 17.34 KB |
จำนวนการติดตั้ง | 867 |
เวอร์ชันปัจจุบัน | 0.1.1 |
อัปเดตครั้งล่าสุด | 2018-06-20 |
วันที่เผยแพร่ | 2018-06-20 |
คะแนน | 3.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Krysp_Coder |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Background Ad Skip Extension", "short_name": "YBASE", "version": "0.1.1", "description": "Automatically Skip ads on YouTube. This is not an ad blocker", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false, "matches": [ "https:\/\/www.youtube.com?*" ] }, "browser_action": { "default_icon": "images\/media-skip-forward-xxl.png" }, "icons": { "16": "images\/media-skip-forward16.png", "32": "images\/media-skip-forward32.png", "48": "images\/media-skip-forward48.png", "128": "images\/media-skip-forward128.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/www.youtube.com\/watch*" ] } ] } |