Video Bar
Customizable progress bar for Youtube videos and other web sites
Qu'est-ce que Video Bar ?
Video Bar est une extension Chrome développée par alikims, et sa fonction principale est "Customizable progress bar for Youtube videos and other web sites".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Video Bar
Téléchargez les fichiers d'extension Video Bar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Video Bar |
ID | nediigdbkfmemfcleolaonlpbigjhjhi |
URL Officiel | https://chromewebstore.google.com/detail/video-bar/nediigdbkfmemfcleolaonlpbigjhjhi |
Description | Customizable progress bar for Youtube videos and other web sites |
Taille du Fichier | 17.83 KB |
Nombre d'Installations | 99 |
Version Actuelle | 0.0.7 |
Dernière Mise à Jour | 2021-09-20 |
Date de Publication | 2021-09-16 |
Évaluation | 4.67/5 Total 6 Évaluations |
Développeur | alikims |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |