ToggleVideoProgressBars
Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo
ما هو ToggleVideoProgressBars؟
ToggleVideoProgressBars هو إضافة Chrome تم تطويرها بواسطة rossjgosling، والميزة الرئيسية لها هي "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ToggleVideoProgressBars
قم بتنزيل ملفات الامتداد ToggleVideoProgressBars بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Provides a context menu button, as well as a standard browser icon button, that when pressed toggles the visibility of progress bars and displayed time for various video players! Supports YouTube, Netflix, Amazon, and Vimeo Firefox Version: https://addons.mozilla.org/en-GB/firefox/addon/togglevideoprogressbars/
معلومات أساسية عن التمديد
الاسم | ToggleVideoProgressBars |
ID | hmenobknlandacpmndhikkcijdkpaccm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/togglevideoprogressbars/hmenobknlandacpmndhikkcijdkpaccm |
الوصف | Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo |
حجم الملف | 14.85 KB |
عدد التثبيتات | 29 |
النسخة الحالية | 1.0.5 |
آخر تحديث | 2022-03-30 |
تاريخ النشر | 2020-06-01 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | rossjgosling |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/RossGosling-Github/ToggleVideoProgressBars |
عنوان صفحة المساعدة | https://github.com/RossGosling-Github/ToggleVideoProgressBars/issues |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ToggleVideoProgressBars", "version": "1.0.5", "description": "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo", "icons": { "16": "icon\/main.png", "32": "icon\/main.png", "64": "icon\/main.png", "128": "icon\/main.png" }, "browser_action": { "default_icon": { "128": "icon\/visible.png" }, "browser_style": true, "default_title": "ToggleVideoProgressBars Toggle" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "include_globs": [ "http*:\/\/*youtube.*", "http*:\/\/*youtu.be*", "http*:\/\/*netflix.*", "http*:\/\/*amazon.*", "http*:\/\/*vimeo.*" ], "js": [ "src\/common.js", "src\/document.js" ] } ], "background": { "scripts": [ "src\/common.js", "src\/background.js" ] }, "web_accessible_resources": [ "style\/*.css" ], "permissions": [ "storage", "contextMenus", " |