Dance Dash
Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
Dance Dashとは何ですか?
Dance Dashはgrantkim93によって開発されたChromeの拡張機能で、その主な機能は「Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.」です。
拡張機能のスクリーンショット
Dance Dash拡張機能のCRXファイルをダウンロード
Dance Dash拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
For anyone who has tried to learn dances through Youtube, you probably know the pain of having to walk over to your computer, find the correct start point, and do it all over again when you want to practice a sequence again. DanceDash is a little dashboard that allows you to save timestamps of videos for quick access and also customize viewing with loops, different playback speeds, and start and end times. Let's all become dope dancers!
拡張機能の基本情報
名前 | Dance Dash |
ID | imhappkpaidminfjnkfghcphigbeikma |
公式URL | https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma |
説明 | Dashboard for saving timestamps and customizing viewing while learning dances on Youtube. |
ファイルサイズ | 31.94 KB |
インストール数 | 49 |
現在のバージョン | 1.4 |
最終更新日 | 2020-08-13 |
公開日 | 2020-04-14 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | grantkim93 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dance Dash", "version": "1.4", "description": "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.", "manifest_version": 2, "icons": { "128": "danceimage.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "storage", "activeTab" ], "page_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ] } |