YouTube Playback Position with Side Buttons
When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video
ما هو YouTube Playback Position with Side Buttons؟
YouTube Playback Position with Side Buttons هو إضافة Chrome تم تطويرها بواسطة sanitysign، والميزة الرئيسية لها هي "When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Playback Position with Side Buttons
قم بتنزيل ملفات الامتداد YouTube Playback Position with Side Buttons بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Allows to navigate YouTube videos using mouse side-buttons similar to many video players. Navigation will work if the video is in full screen mode or cursor hovers the video. Extension’s popup allows to change skip time.
معلومات أساسية عن التمديد
الاسم | YouTube Playback Position with Side Buttons |
ID | gdgfjcfcfkhoiebkflodhommhllbjnjd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-playback-position/gdgfjcfcfkhoiebkflodhommhllbjnjd |
الوصف | When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video |
حجم الملف | 21.13 KB |
عدد التثبيتات | 97 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2022-11-04 |
تاريخ النشر | 2022-03-17 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | sanitysign |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://sanitysign.github.io/extensions-privacy-policies |
اللغات المدعومة | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ] } ], "event_rules": [ { "event": "declarativeContent.onPageChanged", "actions": [ { "type": "declarativeContent.ShowPageAction" } ], "conditions": [ { "type": "declarativeContent.PageStateMatcher", "pageUrl": { "hostEquals": "www.youtube.com" } } ] } ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "img\/mousetube-16.png", "32": "img\/mousetube-32.png", "48": "img\/mousetube-48.png", "128": "img\/mousetube-128.png" } }, "icons": { "16": "img\/mousetube-16.png", "32": "img\/mousetube-32.png", "48": "img\/mousetube-48.png", "128": "img\/mousetube-128.png" }, "default_locale": "en", "externally_connectable": { "ids": [] } } |