Youtube Plus
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
ما هو Youtube Plus؟
Youtube Plus هو إضافة Chrome تم تطويرها بواسطة TalentedB، والميزة الرئيسية لها هي "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube Plus
قم بتنزيل ملفات الامتداد Youtube Plus بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and comprehend content at your own pace with ease. Our extension also comes equipped with an ad-skipping feature for YouTube videos, ensuring an uninterrupted viewing experience. Additionally, our extension includes a volume changer feature that allows you to adjust the volume of any video playing, even above or below 100%. No more frustration with slow videos, annoying ads, or limited volume control. Download our extension today and elevate your video playback experience to the next level.
معلومات أساسية عن التمديد
الاسم | Youtube Plus |
ID | cedpplfbcjacmflnlglnebkglbibkegk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk |
الوصف | Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and… |
حجم الملف | 70.09 KB |
عدد التثبيتات | 60 |
النسخة الحالية | 1.0 |
آخر تحديث | 2023-02-25 |
تاريخ النشر | 2023-02-21 |
تقييم | 5.00/5 مجموع تقييمات 9 |
المطور | TalentedB |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/TalentedB/Youtube-Plus |
عنوان صفحة المساعدة | https://github.com/TalentedB/Youtube-Plus |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Plus", "version": "1.0", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "action": { "default_title": "Youtube Plus", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "adskipper.js" ], "run_at": "document_start", "world": "MAIN" }, { "matches": [ "*:\/\/*\/*" ], "js": [ "volumeInject.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "scripting", "activeTab" ] } |