Veep
Keep your videos playback positions in sync across all of your devices and browser restarts.
Veepとは何ですか?
VeepはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Keep your videos playback positions in sync across all of your devices and browser restarts.」です。
拡張機能のスクリーンショット
Veep拡張機能のCRXファイルをダウンロード
Veep拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Veep allows you to watch Youtube videos from where you let them even if you closed the tab, restarted your browser or even used another computer. In order to synchronize playback positions across all of your devices, you need to be logged into Chrome with the same account and have the sync enabled in the browser settings on every devices.
拡張機能の基本情報
名前 | Veep |
ID | floamojfedahogohlnlakmehjnjbnhkj |
公式URL | https://chromewebstore.google.com/detail/veep/floamojfedahogohlnlakmehjnjbnhkj |
説明 | Keep your videos playback positions in sync across all of your devices and browser restarts. |
ファイルサイズ | 23.13 KB |
インストール数 | 31 |
現在のバージョン | 1.1.0 |
最終更新日 | 2016-02-05 |
公開日 | 2016-02-05 |
開発者 | Unknown |
支払い方法 | free |
ヘルプページのURL | https://github.com/cGuille/veep |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Veep", "description": "Keep your videos playback positions in sync across all of your devices and browser restarts.", "version": "1.1.0", "icons": { "16": "img\/veep-16.png", "48": "img\/veep-48.png", "128": "img\/veep-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "js": [ "src\/youtube-storage.js", "src\/url-params.js", "src\/youtube.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "src\/youtube-storage.js", "src\/youtube-cleanup.js", "src\/videos-count.js" ] }, "browser_action": { "default_icon": { "19": "img\/veep-19.png", "38": "img\/veep-38.png" }, "default_popup": "src\/last-videos.html", "default_title": "Veep" }, "permissions": [ "storage" ] } |