Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
Ad Acceleratorคืออะไร?
Ad Accelerator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rkarpinski และคุณลักษณะหลักของมันคือ "Detects if a video ad is playing, mutes the video and dramatically increases speed."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ad Accelerator
ดาวน์โหลดไฟล์ส่วนขยาย Ad Accelerator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Skip through annoying advertisements instantly on sites like Youtube & Hulu. * Automatically utilize skip ad button * Automatically mute ads * Automatically increases ad speed to the maximum allowed speed Skip through ads with Ad Accelerator and spend more time watching videos. Completely free and open sourced on github!! Support us by leaving a review or by contributing a pull request.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Ad Accelerator |
ID | gpboiedfklodfhngobidfjecdpmccehg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg |
คำอธิบาย | Detects if a video ad is playing, mutes the video and dramatically increases speed. |
ขนาดไฟล์ | 472 KB |
จำนวนการติดตั้ง | 10,000 |
เวอร์ชันปัจจุบัน | 0.0.0.4 |
อัปเดตครั้งล่าสุด | 2024-03-06 |
วันที่เผยแพร่ | 2023-11-15 |
คะแนน | 4.46/5 รวมทั้งหมด 69 คะแนน |
ผู้พัฒนา | rkarpinski |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/rkk3/ad-accelerator |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ad Accelerator", "version": "0.0.0.4", "description": "Detects if a video ad is playing, mutes the video and dramatically increases speed.", "permissions": [ "webNavigation", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/www.hulu.com\/watch\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/www.hulu.com\/watch\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "assets\/images\/icon16.png", "32": "assets\/images\/icon32.png", "48": "assets\/images\/icon48.png", "128": "assets\/images\/icon128.png" } } |