Youtube Remote
This extension allows you to remotely control Youtube songs
Youtube Remoteとは何ですか?
Youtube RemoteはShubham Jindalによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to remotely control Youtube songs」です。
拡張機能のスクリーンショット
Youtube Remote拡張機能のCRXファイルをダウンロード
Youtube Remote拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Tired of opening the Youtube tab in Chrome to change songs or pause it? Introducing a Youtube Remote which can be used to control Youtube songs anywhere from your PC!
You can also change the Keyboard shortcuts by going to Keyboard Shortcuts in Chrome Extensions page(bottom right in chrome://extensions)
Youtube Remote allows you to play, pause, forward, next and previous song using the following default shortcuts:
*********Shortcuts*********
Ctrl/Cmd + Shift + 1 . Pause/Play Song
Ctrl/Cmd + Shift + 2 . Next Song
Ctrl/Cmd + Shift + 5 . Forward Song by 10 seconds
Ctrl/Cmd + Shift + 6 . Previous Song
PS: There should be only Youtube tab open. It controls the first Youtube tab 拡張機能の基本情報
| 名前 | |
| ID | ololgenmdnakjpkcmphnllakhpbgcgdf |
| 公式URL | https://chrome.google.com/webstore/detail/youtube-remote/ololgenmdnakjpkcmphnllakhpbgcgdf |
| 説明 | This extension allows you to remotely control Youtube songs |
| ファイルサイズ | 19.25 KB |
| インストール数 | 616 |
| 現在のバージョン | 2.0 |
| 最終更新日 | 2017-09-11 |
| 公開日 | 2017-09-11 |
| 評価 | 4.53/5 合計 17 レビュー |
| 開発者 | Shubham Jindal |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Youtube Remote",
"description": "This extension allows you to remotely control Youtube songs",
"version": "2.0",
"icons": {
"128": "icon.png"
},
"content_security_policy": "connect-src http: https:; default-src 'self';",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"commands": {
"next": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "Command+Shift+2"
},
"description": "Next Song",
"global": true
},
"pause": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "Command+Shift+1"
},
"description": "Pause\/Play Song",
"global": true
},
"previous": {
"suggested_key": {
"default": "Ctrl+Shift+5",
"mac": "Command+Shift+5"
},
"description": "Previous song",
"global": true
},
"forward": {
"suggested_key": {
"default": "Ctrl+Shift+6",
"mac": "Command+Shift+6"
},
"description": "Forward song",
"global": true
}
}
} | |