YT Skip Ads
This extension attempts to skip the YouTube ads automatically
ما هو YT Skip Ads؟
YT Skip Ads هو إضافة Chrome تم تطويرها بواسطة Furqan، والميزة الرئيسية لها هي "This extension attempts to skip the YouTube ads automatically".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YT Skip Ads
قم بتنزيل ملفات الامتداد YT Skip Ads بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension basically automates two things for you, so you can save yourselves a few seconds of time and avoid mundane tasks: 1. Auto-skips those 5 second ads on YouTube: YouTube usually plays ads before the videos, and these ads have a countdown timer of around 5 seconds before the ad can be skipped using the "Skip Ad" button, which only appears after few seconds. This extension tries to skip the ad immediately and automatically for you, even before the ad countdown timer ends. This works when the ad is a "skippable" ad. 2. Dismisses those annoying overlay ads that appear over the video at the bottom, with a remarkably small button to close them.
معلومات أساسية عن التمديد
الاسم | YT Skip Ads |
ID | lahknfhfeikbpljolkheigimmcfhplga |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/yt-skip-ads/lahknfhfeikbpljolkheigimmcfhplga |
الوصف | This extension attempts to skip the YouTube ads automatically |
حجم الملف | 17.31 KB |
عدد التثبيتات | 34 |
النسخة الحالية | 1.0 |
آخر تحديث | 2021-09-14 |
تاريخ النشر | 2021-09-14 |
المطور | Furqan |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YT Skip Ads", "description": "This extension attempts to skip the YouTube ads automatically", "version": "1.0", "page_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "YouTube Skip Ads" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "src\/css\/main.css" ], "js": [ "src\/js\/dom-watcher.js" ], "run_at": "document_end" } ] } |