ToggleVideoProgressBars
Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo
Wat is ToggleVideoProgressBars?
ToggleVideoProgressBars is een Chrome-extensie ontwikkeld door rossjgosling, en de belangrijkste functie is "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo".
Extensie Screenshots
Download het CRX-bestand van de extensie ToggleVideoProgressBars
Download ToggleVideoProgressBars-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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/
Basisinformatie over de Extensie
Naam | ToggleVideoProgressBars |
ID | hmenobknlandacpmndhikkcijdkpaccm |
Officiële URL | https://chromewebstore.google.com/detail/togglevideoprogressbars/hmenobknlandacpmndhikkcijdkpaccm |
Beschrijving | Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo |
Bestandsgrootte | 14.85 KB |
Aantal Installaties | 29 |
Huidige Versie | 1.0.5 |
Laatst Bijgewerkt | 2022-03-30 |
Publicatiedatum | 2020-06-01 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | rossjgosling |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/RossGosling-Github/ToggleVideoProgressBars |
Help Pagina-URL | https://github.com/RossGosling-Github/ToggleVideoProgressBars/issues |
Ondersteunde Talen | 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", " |