AdSkipper
This extension will skip youtube ads.
ما هو AdSkipper؟
AdSkipper هو إضافة Chrome تم تطويرها بواسطة Abhishek Meharia، والميزة الرئيسية لها هي "This extension will skip youtube ads.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة AdSkipper
قم بتنزيل ملفات الامتداد AdSkipper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
AdSkipper for Youtube™ is a content filtering and ad blocking browser extension which blocks ads on Youtube™. Automatically clicks 'Skip Ad' buttons for you. It doesn't block ads, it just clicks close button and skip ad for you automatically. Useful if you are listening to music in office areas or if you are bit lazy to press that button.
معلومات أساسية عن التمديد
الاسم | AdSkipper |
ID | paeoelngbckenlidinleldbemhkdiphi |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/adskipper/paeoelngbckenlidinleldbemhkdiphi |
الوصف | This extension will skip youtube ads. |
حجم الملف | 59.06 KB |
عدد التثبيتات | 2,555 |
النسخة الحالية | 0.7 |
آخر تحديث | 2021-06-27 |
تاريخ النشر | 2019-08-14 |
تقييم | 4.50/5 مجموع تقييمات 8 |
المطور | Abhishek Meharia |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://abhim.in |
عنوان صفحة المساعدة | https://abhim.in |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AdSkipper", "description": "This extension will skip youtube ads.", "version": "0.7", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": true }, "commands": { "toggle-feature-foo": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "MacCtrl+Shift+K" }, "description": "Switches between play and pause state.", "name": "Play pause shortcut command", "global": true } }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "skip.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'" } |