Video Bar
Customizable progress bar for Youtube videos and other web sites
Was ist Video Bar?
Video Bar ist eine Chrome-Erweiterung, die von alikims entwickelt wurde, und ihr Hauptmerkmal ist "Customizable progress bar for Youtube videos and other web sites".
Erweiterungsscreenshots
Video Bar-Erweiterungs-CRX-Datei herunterladen
Laden Sie Video Bar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Adds a progress bar to YouTube videos and videos on other web sites. This helps, in a non-intrusive way, to keep track of the video progress while all the controls are hidden. The progress bar position, size, colors, timer font and mouse-over behavior can be customized in the options. The page has a live preview of the bar with "Save settings" and "Restore default" buttons. All settings are kept in the local browser's storage. Left mouse click on the extension's icon turns it on/off for each browser's tab.
Grundlegende Informationen zur Erweiterung
Name | Video Bar |
ID | nediigdbkfmemfcleolaonlpbigjhjhi |
Offizielle URL | https://chromewebstore.google.com/detail/video-bar/nediigdbkfmemfcleolaonlpbigjhjhi |
Beschreibung | Customizable progress bar for Youtube videos and other web sites |
Dateigröße | 17.83 KB |
Installationsanzahl | 99 |
Aktuelle Version | 0.0.7 |
Letztes Update | 2021-09-20 |
Veröffentlichungsdatum | 2021-09-16 |
Bewertung | 4.67/5 Insgesamt 6 Bewertungen |
Entwickler | alikims |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Bar", "version": "0.0.7", "description": "Customizable progress bar for Youtube videos and other web sites", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "ico\/16.png", "48": "ico\/48.png", "128": "ico\/128.png" } }, "permissions": [ "storage" ], "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "bar_on.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "icons": { "16": "ico\/16.png", "48": "ico\/48.png", "128": "ico\/128.png" } } |