Youtube Ad Muter

Mutes ads while still supporting your favourite YouTubers

ما هو Youtube Ad Muter؟

Youtube Ad Muter هو إضافة Chrome تم تطويرها بواسطة nopynospy، والميزة الرئيسية لها هي "Mutes ads while still supporting your favourite YouTubers".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Youtube Ad Muter

قم بتنزيل ملفات الامتداد Youtube Ad Muter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        In content script, use mutation observer to detect when ad is playing on YouTube. Then, set videos to muted.                    

معلومات أساسية عن التمديد

الاسم Youtube Ad Muter Youtube Ad Muter
ID kpaapfjgeapgppbkcgnogpdadofkeobc
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-ad-muter/kpaapfjgeapgppbkcgnogpdadofkeobc
الوصف Mutes ads while still supporting your favourite YouTubers
حجم الملف 88.41 KB
عدد التثبيتات 489
النسخة الحالية 1.0.0
آخر تحديث 2023-06-18
تاريخ النشر 2023-06-18
تقييم 4.50/5 مجموع تقييمات 4
المطور nopynospy
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/nopynospy/youtube_ad_muter
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Ad Muter",
    "description": "Mutes ads while still supporting your favourite YouTubers",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_title": "Youtube Ad Muter",
        "default_icon": "icon.png"
    },
    "permissions": [],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}