YouTube Shorts Volume Control
Allows a convenient slider based UI element for controlling volume in youtube shorts UI
ما هو YouTube Shorts Volume Control؟
YouTube Shorts Volume Control هو إضافة Chrome تم تطويرها بواسطة Priya، والميزة الرئيسية لها هي "Allows a convenient slider based UI element for controlling volume in youtube shorts UI".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Shorts Volume Control
قم بتنزيل ملفات الامتداد YouTube Shorts Volume Control بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension caters to everyone who is searching for a extension to control the volume of youtube shorts in their PC. This functionaility is currently missing on web based UI on laptops and PCs. This extension adds an UI element, as a convenient range slider that helps the user to control the volume of youtube shorts in a fine grained manner. Fixed some small bugs.
معلومات أساسية عن التمديد
الاسم | YouTube Shorts Volume Control |
ID | iocnlgcooancaojnpkonjpcocmcjkgle |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-shorts-volume-con/iocnlgcooancaojnpkonjpcocmcjkgle |
الوصف | Allows a convenient slider based UI element for controlling volume in youtube shorts UI |
حجم الملف | 4.57 KB |
عدد التثبيتات | 68 |
النسخة الحالية | 0.0.3 |
آخر تحديث | 2023-11-25 |
تاريخ النشر | 2023-11-23 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Priya |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Shorts Volume Control", "version": "0.0.3", "description": "Allows a convenient slider based UI element for controlling volume in youtube shorts UI", "permissions": [ "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "action": { "default_icon": [], "default_title": "Youtube Shorts Vol Control", "default_popup": "popup.html" }, "manifest_version": 3 } |