Spotify Ad Auto-Muter
Automatically mute audio ads.
ما هو Spotify Ad Auto-Muter؟
Spotify Ad Auto-Muter هو إضافة Chrome تم تطويرها بواسطة Zion Developers، والميزة الرئيسية لها هي "Automatically mute audio ads.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Spotify Ad Auto-Muter
قم بتنزيل ملفات الامتداد Spotify Ad Auto-Muter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is NOT an Ad Blocker, It mute ads.
Support Spotify by disabling AdBlock / uBlock on open.spotify.com and use this extension to automatically mute audio ads.
Feature: Automatically mute audio ads (Changeable on Options).
Feature: Disable / Enable the extension by pressing F2 (Changeable on Options).
More features to be developed soon.
This is not a Spotify official extension.
Open Source: https://github.com/ziondevelopers/spotify-ad-auto-muter
License: https://creativecommons.org/licenses/by-nc-sa/4.0/ معلومات أساسية عن التمديد
| الاسم | |
| ID | hhlhelmnhcmphakjipgkbcjkfpkdnaag |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/spotify-ad-auto-muter/hhlhelmnhcmphakjipgkbcjkfpkdnaag |
| الوصف | Automatically mute audio ads. |
| حجم الملف | 100 KB |
| عدد التثبيتات | 579 |
| النسخة الحالية | 0.1.10 |
| آخر تحديث | 2024-01-07 |
| تاريخ النشر | 2022-10-25 |
| تقييم | 3.67/5 مجموع تقييمات 6 |
| المطور | Zion Developers |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/ziondevelopers/spotify-ad-auto-muter |
| عنوان صفحة المساعدة | https://github.com/ZionDevelopers/spotify-ad-auto-muter/issues |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"content_scripts": [
{
"all_frames": true,
"exclude_globs": [],
"include_globs": [
"*open.spotify.com*"
],
"css": [],
"js": [
"includes\/jquery-3.7.1.min.js",
"includes\/spotify.js",
"includes\/jquery.hotkeys.js"
],
"matches": [
"*:\/\/open.spotify.com\/*"
],
"run_at": "document_start"
}
],
"description": "Automatically mute audio ads.",
"icons": {
"128": "icons\/icon.png"
},
"manifest_version": 3,
"name": "Spotify Ad Auto-Muter",
"short_name": "Spotify Ad Auto-Muter",
"options_page": "options.html",
"permissions": [
"storage"
],
"version": "0.1.10",
"web_accessible_resources": [
{
"matches": [
"*:\/\/open.spotify.com\/*"
],
"resources": [
"icons\/icon.png",
"includes\/jquery-3.7.1.min.js",
"includes\/spotify.js",
"includes\/jquery-3.7.1.min.map",
"includes\/jquery.hotkeys.js"
]
}
]
} | |