Spotimute
This extension mutes the spotify & gaana audio when ad comes.
ما هو Spotimute؟
Spotimute هو إضافة Chrome تم تطويرها بواسطة piedcipher.dev، والميزة الرئيسية لها هي "This extension mutes the spotify & gaana audio when ad comes.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Spotimute
قم بتنزيل ملفات الامتداد Spotimute بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.
معلومات أساسية عن التمديد
الاسم | Spotimute |
ID | mlkdhplkfffpgfkioemkjagaccinclgc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc |
الوصف | This extension mutes the spotify & gaana audio when ad comes. |
حجم الملف | 19.98 KB |
عدد التثبيتات | 91 |
النسخة الحالية | 0.0.2 |
آخر تحديث | 2022-07-27 |
تاريخ النشر | 2022-07-21 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | piedcipher.dev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://twitter.com/piedcipher |
عنوان صفحة المساعدة | https://github.com/piedcipher/spotimute/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotimute", "version": "0.0.2", "description": "This extension mutes the spotify & gaana audio when ad comes.", "manifest_version": 3, "author": "Tirth Patel", "action": { "default_popup": "index.html", "default_title": "Spotimute" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "spotify.js" ] }, { "matches": [ "https:\/\/gaana.com\/*" ], "js": [ "gaana.js" ] } ], "icons": { "16": ".\/assets\/_16.png", "48": ".\/assets\/_48.png", "128": ".\/assets\/_128.png" } } |