SkipAds
This clicks SkipAds button, removes Ad-banners for you
ما هو SkipAds؟
SkipAds هو إضافة Chrome تم تطويرها بواسطة Edwin، والميزة الرئيسية لها هي "This clicks SkipAds button, removes Ad-banners for you".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة SkipAds
قم بتنزيل ملفات الامتداد SkipAds بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension automatically clicks Skip Ad button on youtube videos. It also removes the Ad-banners that appear at the bottom of the video. You just have to install this Extension, and watch Youtube without pressing on Skip Ad button. This plugin works exclusively on YouTube videos.
معلومات أساسية عن التمديد
الاسم | SkipAds |
ID | gccoifaifhhancbpbngckolbphodjiea |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea |
الوصف | This clicks SkipAds button, removes Ad-banners for you |
حجم الملف | 9.99 KB |
عدد التثبيتات | 159 |
النسخة الحالية | 2.0 |
آخر تحديث | 2022-06-27 |
تاريخ النشر | 2020-06-19 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Edwin |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SkipAds", "version": "2.0", "description": "This clicks SkipAds button, removes Ad-banners for you ", "permissions": [ "activeTab", "declarativeContent", "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "background": { "service_worker": "background.js", "persistent": false }, "action": { "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "skipAds.js" ] } ], "manifest_version": 3 } |