YouTube Sampler
Create customized queue points of numeric keys (0~9) for YouTube video.
YouTube Samplerとは何ですか?
YouTube Samplerはvibert.devによって開発されたChromeの拡張機能で、その主な機能は「Create customized queue points of numeric keys (0~9) for YouTube video.」です。
拡張機能のスクリーンショット
YouTube Sampler拡張機能のCRXファイルをダウンロード
YouTube Sampler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Make YouTube videos your biggest sample inspiration database. You can now share queue points with your friends with v.0.2. YouTube has default key mapping on numeric keys to for jumping to different part of a video. "YouTube Sampler" help to customize the queue points. You can also hold the "shift" key to fine tune the position. The extension will save your changes automatically in your browser.
拡張機能の基本情報
名前 | YouTube Sampler |
ID | jfkkfiknnoojphipaipdojadlpdeljbj |
公式URL | https://chromewebstore.google.com/detail/youtube-sampler/jfkkfiknnoojphipaipdojadlpdeljbj |
説明 | Create customized queue points of numeric keys (0~9) for YouTube video. |
ファイルサイズ | 537 KB |
インストール数 | 464 |
現在のバージョン | 0.2 |
最終更新日 | 2021-05-02 |
公開日 | 2021-03-11 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | vibert.dev |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/vibertthio/yt-sampler |
ヘルプページのURL | https://github.com/vibertthio/yt-sampler/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Sampler", "version": "0.2", "description": "Create customized queue points of numeric keys (0~9) for YouTube video.", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/vibert16.png", "32": "\/images\/vibert32.png", "48": "\/images\/vibert48.png", "128": "\/images\/vibert128.png" } }, "icons": { "16": "\/images\/vibert16.png", "32": "\/images\/vibert32.png", "48": "\/images\/vibert48.png", "128": "\/images\/vibert128.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "MacCtrl+Shift+Y" } } }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "styles.css" ], "js": [ "Tone.js", "content_script.js" ] } ] } |