YT Remote
A chrome extension to control your YouTube tabs / playback from any website / tabs.
YT Remoteとは何ですか?
YT Remoteはshraey96によって開発されたChromeの拡張機能で、その主な機能は「A chrome extension to control your YouTube tabs / playback from any website / tabs.」です。
拡張機能のスクリーンショット
YT Remote拡張機能のCRXファイルをダウンロード
YT Remote拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A simple unique chrome extension to control your YouTube tabs from anywhere in the browser. Seek, Search, Play, Pause YouTube tracks and also skip video ads from anywhere in your browser Control your YouTube tab via the extensions keyboard shortcuts: [SPACE BAR] to play / pause [CTRL + ARROW LEFT] to seek to previous track [CTRL + ARROW RIGHT] to seek to next track
拡張機能の基本情報
名前 | YT Remote |
ID | jodpnmokilccncpcgfjpmkhengjhligo |
公式URL | https://chromewebstore.google.com/detail/yt-remote/jodpnmokilccncpcgfjpmkhengjhligo |
説明 | A chrome extension to control your YouTube tabs / playback from any website / tabs. |
ファイルサイズ | 337 KB |
インストール数 | 949 |
現在のバージョン | 1.0.6 |
最終更新日 | 2020-08-30 |
公開日 | 2020-02-01 |
評価 | 4.14/5 合計 14 レビュー |
開発者 | shraey96 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YT Remote", "version": "1.0.6", "short_name": "YT Remote", "description": "A chrome extension to control your YouTube tabs \/ playback from any website \/ tabs.", "browser_action": { "default_popup": "index.html" }, "permissions": [ "storage", "https:\/\/www.youtube.com\/*" ], "background": { "scripts": [ "ytBackgroundScript.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_end", "js": [ "contentScript.js" ] } ], "icons": { "16": "icons-main\/logo_16_c.png", "48": "icons-main\/logo_48_c.png", "128": "icons-main\/logo_128_c.png" }, "manifest_version": 2 } |