Video Bar
Customizable progress bar for Youtube videos and other web sites
Video Barとは何ですか?
Video Barはalikimsによって開発されたChromeの拡張機能で、その主な機能は「Customizable progress bar for Youtube videos and other web sites」です。
拡張機能のスクリーンショット
Video Bar拡張機能のCRXファイルをダウンロード
Video Bar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Video Bar |
ID | nediigdbkfmemfcleolaonlpbigjhjhi |
公式URL | https://chromewebstore.google.com/detail/video-bar/nediigdbkfmemfcleolaonlpbigjhjhi |
説明 | Customizable progress bar for Youtube videos and other web sites |
ファイルサイズ | 17.83 KB |
インストール数 | 99 |
現在のバージョン | 0.0.7 |
最終更新日 | 2021-09-20 |
公開日 | 2021-09-16 |
評価 | 4.67/5 合計 6 レビュー |
開発者 | alikims |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } } |