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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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".
확장 프로그램 기본 정보
이름 | Music Keys |
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 |
이메일 | [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" ] } } |