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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } |