Video Bar
Customizable progress bar for Youtube videos and other web sites
Cos'è Video Bar?
Video Bar è un'estensione di Chrome sviluppata da alikims, e la sua funzione principale è "Customizable progress bar for Youtube videos and other web sites".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Video Bar
Scarica i file di estensione Video Bar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Video Bar |
ID | nediigdbkfmemfcleolaonlpbigjhjhi |
URL Ufficiale | https://chromewebstore.google.com/detail/video-bar/nediigdbkfmemfcleolaonlpbigjhjhi |
Descrizione | Customizable progress bar for Youtube videos and other web sites |
Dimensione del File | 17.83 KB |
Conteggio Installazioni | 99 |
Versione Corrente | 0.0.7 |
Ultimo Aggiornamento | 2021-09-20 |
Data di Pubblicazione | 2021-09-16 |
Valutazione | 4.67/5 Totale 6 Valutazioni |
Sviluppatore | alikims |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |