Auto Ad Mute
This mutes youtube ad audio.
Auto Ad Muteคืออะไร?
Auto Ad Mute เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jasoberai และคุณลักษณะหลักของมันคือ "This mutes youtube ad audio."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Ad Mute
ดาวน์โหลดไฟล์ส่วนขยาย Auto Ad Mute ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Code is available here as open source: [https://github.com/jasmeeto/auto-ad-mute] An extension that automatically mutes tabs while ad audio from YouTube is playing for those who want to support their favorite content creators without the noise. Relatively intuitive, the addon is enabled by default. Features: - Mutes ads - Can skip ads that are skippable (i.e. ones that show the 'Skip Ad' button) (Disabled by default) - Hides ad banners that appear in middle of videos by just moving them off screen
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Auto Ad Mute |
ID | hljoencdappihmlkilchbhcjoldimkbn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/auto-ad-mute/hljoencdappihmlkilchbhcjoldimkbn |
คำอธิบาย | This mutes youtube ad audio. |
ขนาดไฟล์ | 39.86 KB |
จำนวนการติดตั้ง | 1,570 |
เวอร์ชันปัจจุบัน | 1.8 |
อัปเดตครั้งล่าสุด | 2017-10-29 |
วันที่เผยแพร่ | 2017-10-29 |
คะแนน | 3.07/5 รวมทั้งหมด 45 คะแนน |
ผู้พัฒนา | jasoberai |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/jasmeeto/auto-ad-mute |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Ad Mute", "description": "This mutes youtube ad audio.", "version": "1.8", "icons": { "48": "icon_mute.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "libs\/jquery-3.1.0.min.js", "libs\/arrive.min.js", "contentScript.js" ], "all_frames": true, "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Auto Mute Options" }, "background": { "scripts": [ "backgroundScript.js" ] }, "permissions": [ "tabs", "*:\/\/www.youtube.com\/*", "webNavigation", "storage" ] } |