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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้าช่วยเหลือ | 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", " |