YouTube Background Ad Skip Extension

Automatically Skip ads on YouTube. This is not an ad blocker

ما هو YouTube Background Ad Skip Extension؟

YouTube Background Ad Skip Extension هو إضافة Chrome تم تطويرها بواسطة Krysp_Coder، والميزة الرئيسية لها هي "Automatically Skip ads on YouTube. This is not an ad blocker".

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

screenshot

تحميل ملف CRX للإضافة YouTube Background Ad Skip Extension

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

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

                        Automatically skip YouTube ads when the ad is able to be skipped. When an ad has the option to be skipped within 5 seconds the extension will skip the ad for you immediately. This does not block ads or skip ads that do not originally have the option to be skipped.                    

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

الاسم YouTube Background Ad Skip Extension YouTube Background Ad Skip Extension
ID ncbifbdnlggnffchafbdiefobpabajkb
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb
الوصف Automatically Skip ads on YouTube. This is not an ad blocker
حجم الملف 17.34 KB
عدد التثبيتات 867
النسخة الحالية 0.1.1
آخر تحديث 2018-06-20
تاريخ النشر 2018-06-20
تقييم 3.33/5 مجموع تقييمات 3
المطور Krysp_Coder
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Background Ad Skip Extension",
    "short_name": "YBASE",
    "version": "0.1.1",
    "description": "Automatically Skip ads on YouTube. This is not an ad blocker",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false,
        "matches": [
            "https:\/\/www.youtube.com?*"
        ]
    },
    "browser_action": {
        "default_icon": "images\/media-skip-forward-xxl.png"
    },
    "icons": {
        "16": "images\/media-skip-forward16.png",
        "32": "images\/media-skip-forward32.png",
        "48": "images\/media-skip-forward48.png",
        "128": "images\/media-skip-forward128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ]
        }
    ]
}