ToggleVideoProgressBars
Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo
Apa itu ToggleVideoProgressBars?
ToggleVideoProgressBars adalah ekstensi Chrome yang dikembangkan oleh rossjgosling, dan fitur utamanya adalah "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ToggleVideoProgressBars
Unduh file ekstensi ToggleVideoProgressBars dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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/
Informasi Dasar Ekstensi
Nama | ToggleVideoProgressBars |
ID | hmenobknlandacpmndhikkcijdkpaccm |
URL Resmi | https://chromewebstore.google.com/detail/togglevideoprogressbars/hmenobknlandacpmndhikkcijdkpaccm |
Deskripsi | Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo |
Ukuran File | 14.85 KB |
Jumlah Instalasi | 29 |
Versi Saat Ini | 1.0.5 |
Terakhir Diperbarui | 2022-03-30 |
Tanggal Publikasi | 2020-06-01 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | rossjgosling |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/RossGosling-Github/ToggleVideoProgressBars |
URL Halaman Bantuan | https://github.com/RossGosling-Github/ToggleVideoProgressBars/issues |
Bahasa yang Didukung | 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", " |