YouTube Ad Blocker
Automatically blocks advertisement of YouTube Videos
ما هو YouTube Ad Blocker؟
YouTube Ad Blocker هو إضافة Chrome تم تطويرها بواسطة hiatamaworkshop، والميزة الرئيسية لها هي "Automatically blocks advertisement of YouTube Videos".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Ad Blocker
قم بتنزيل ملفات الامتداد YouTube Ad Blocker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The extension functions as "Auto Clicker", it will click on 【Close / Skip Buttons】of the YouTube videos. It will work for some time, just a silly small function.
معلومات أساسية عن التمديد
الاسم | YouTube Ad Blocker |
ID | lnnfiihdkikdognbnlbnfajpeccdohka |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-ad-blocker/lnnfiihdkikdognbnlbnfajpeccdohka |
الوصف | Automatically blocks advertisement of YouTube Videos |
حجم الملف | 62.03 KB |
عدد التثبيتات | 37 |
النسخة الحالية | 0.1.1 |
آخر تحديث | 2021-02-18 |
تاريخ النشر | 2021-02-17 |
المطور | hiatamaworkshop |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://hiatamaworkshop.com/main.html |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Ad Blocker", "version": "0.1.1", "manifest_version": 2, "description": "Automatically blocks advertisement of YouTube Videos", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_popup": "youtube_adBlock.html", "default_icon": "icons\/icon16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "content.js", "inject.js" ], "permissions": [ "storage" ] } |