Music Keys
Adds global shortcuts for play/pause, next, previous to music/videos in YouTube, gaana, SoundCloud, 8tracks.
Music Keysとは何ですか?
Music Keysはshubhamによって開発されたChromeの拡張機能で、その主な機能は「Adds global shortcuts for play/pause, next, previous to music/videos in YouTube, gaana, SoundCloud, 8tracks.」です。
Music Keys拡張機能のCRXファイルをダウンロード
Music Keys拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Plays/pauses YouTube videos, gaana, SoundCloud, 8tracks. Helpful when you are listening music and working on some other chrome tab, or chrome is in background. Can only play/pause 1st tab out of multiple tabs running, shortcut is "Ctrl+shift+9", global shortcut. You can also get shortcuts from "keyboard shortcuts" in "chrome://extensions". 拡張機能の基本情報
| 名前 | |
| ID | odmndmgmfakieianebiibnoegimffpjh |
| 公式URL | https://chromewebstore.google.com/detail/music-keys/odmndmgmfakieianebiibnoegimffpjh |
| 説明 | Adds global shortcuts for play/pause, next, previous to music/videos in YouTube, gaana, SoundCloud, 8tracks. |
| ファイルサイズ | 148 KB |
| インストール数 | 81 |
| 現在のバージョン | 3.1 |
| 最終更新日 | 2018-01-14 |
| 公開日 | 2018-01-14 |
| 評価 | 4.67/5 合計 21 レビュー |
| 開発者 | shubham |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/shub30may92/Youtube-Chrome-Extension |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Music Keys",
"description": "Adds global shortcuts for play\/pause, next, previous to music\/videos in YouTube, gaana, SoundCloud, 8tracks.",
"version": "3.1",
"options_page": "options.html",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"storage",
"background",
"https:\/\/www.youtube.com\/",
"https:\/\/gaana.com\/",
"https:\/\/soundcloud.com\/",
"http:\/\/8tracks.com\/",
"https:\/\/play.spotify.com\/"
],
"commands": {
"play_previous": {
"suggested_key": {
"default": "Ctrl+Shift+8",
"linux": "Ctrl+Shift+8",
"mac": "Command+Shift+8"
},
"description": "Play previous",
"global": true
},
"play_pause": {
"suggested_key": {
"default": "Ctrl+Shift+9",
"mac": "Command+Shift+9",
"linux": "Ctrl+Shift+9"
},
"description": "Play\/pause",
"global": true
},
"play_next": {
"suggested_key": {
"default": "Ctrl+Shift+0",
"linux": "Ctrl+Shift+0",
"mac": "Command+Shift+0"
},
"description": "Play Next",
"global": true
},
"_execute_browser_action": {
"suggested_key": {
"windows": "Alt+Y",
"linux": "Alt+Y",
"mac": "Alt+Y"
},
"description": "Play\/pause"
}
},
"background": {
"scripts": [
"js\/background.js"
]
}
} | |