YouTube NoAds!

The add-on blocks ads presented in videos on youtube.

ما هو YouTube NoAds!؟

YouTube NoAds! هو إضافة Chrome تم تطويرها بواسطة info، والميزة الرئيسية لها هي "The add-on blocks ads presented in videos on youtube.".

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

screenshot

تحميل ملف CRX للإضافة YouTube NoAds!

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

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

                        The add-on blocks ads presented in videos on youtube. The ad blocker consists in automatically selecting the 'skip ads' button when it becomes active.                    

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

الاسم YouTube NoAds! YouTube NoAds!
ID plohhfnpbopkgjhbaljjepioomefkaog
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-noads/plohhfnpbopkgjhbaljjepioomefkaog
الوصف The add-on blocks ads presented in videos on youtube.
حجم الملف 166 KB
عدد التثبيتات 761
النسخة الحالية 2.0.0
آخر تحديث 2022-11-30
تاريخ النشر 2022-11-30
تقييم 4.50/5 مجموع تقييمات 2
المطور info
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube NoAds!",
    "description": "The add-on blocks ads presented in videos on youtube.",
    "manifest_version": 3,
    "version": "2.0.0",
    "background": {
        "service_worker": "src\/service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content_scripts.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "alarms",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "resource\/youtube(3).png"
    }
}