YouTube Ad Controller
Fast forward and rewind YouTube ads using your arrow keys!
ما هو YouTube Ad Controller؟
YouTube Ad Controller هو إضافة Chrome تم تطويرها بواسطة Briann، والميزة الرئيسية لها هي "Fast forward and rewind YouTube ads using your arrow keys!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Ad Controller
قم بتنزيل ملفات الامتداد YouTube Ad Controller بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Have you ever wanted to re-watch an ad, or skip it? YouTube Ad Controller lets you fast forward and rewind YouTube video ads with your arrow keys, just like on any video!
معلومات أساسية عن التمديد
الاسم | |
ID | fmklhcikkdkambjpmmpdiaihncopfhlg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-ad-controller/fmklhcikkdkambjpmmpdiaihncopfhlg |
الوصف | Fast forward and rewind YouTube ads using your arrow keys! |
حجم الملف | 10.76 KB |
عدد التثبيتات | 191 |
النسخة الحالية | 1.0 |
آخر تحديث | 2022-07-19 |
تاريخ النشر | 2022-07-18 |
تقييم | 3.00/5 مجموع تقييمات 1 |
المطور | Briann |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://extensions.brianwalczak.com |
عنوان صفحة المساعدة | https://www.brianwalczak.com |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Ad Controller", "description": "Fast forward and rewind YouTube ads using your arrow keys!", "version": "1.0", "author": "ComplexxBrian", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "keyPress.js" ] } ], "icons": { "128": "icon-128.png", "16": "icon-small.png", "48": "icon-48.png" }, "action": { "default_popup": "popup.html", "default_title": "Ad Controller", "default_icon": "icon-small.png" } } |