YouTube NoAds!
The add-on blocks ads presented in videos on youtube.
YouTube NoAds!คืออะไร?
YouTube NoAds! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย info และคุณลักษณะหลักของมันคือ "The add-on blocks ads presented in videos on youtube."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube NoAds!
ดาวน์โหลดไฟล์ส่วนขยาย YouTube NoAds! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The add-on blocks ads presented in videos on youtube. The ad blocker consists in automatically selecting the 'skip ads' button when it becomes active.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | plohhfnpbopkgjhbaljjepioomefkaog |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-noads/plohhfnpbopkgjhbaljjepioomefkaog |
คำอธิบาย | The add-on blocks ads presented in videos on youtube. |
ขนาดไฟล์ | 166 KB |
จำนวนการติดตั้ง | 761 |
เวอร์ชันปัจจุบัน | 2.0.0 |
อัปเดตครั้งล่าสุด | 2022-11-30 |
วันที่เผยแพร่ | 2022-11-30 |
คะแนน | 4.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | info |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube NoAds!", "description": "The add-on blocks ads presented in videos on youtube.", "manifest_version": 3, "version": "2.0.0", "background": { "service_worker": "src\/service_worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/content_scripts.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "alarms", "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "128": "resource\/youtube(3).png" } } |