Webplayer Hotkeys - Shortcuts for web players

Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.

Webplayer Hotkeys - Shortcuts for web players란 무엇입니까?

Webplayer Hotkeys - Shortcuts for web players은(는) Gabriel Duarte에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Webplayer Hotkeys - Shortcuts for web players 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A Chrome extension that assigns hotkeys and shortcuts to play/pause, and to switch music (next and previous). If no player is currently opened, it fires up Spotify.

If there is more player tabs than one, it follows this order of priority: Spotify > Deezer > SoundCloud > Youtube

Works with:

• Spotify
• Deezer
• SoundCloud
• Youtube                    

확장 프로그램 기본 정보

이름 Webplayer Hotkeys - Shortcuts for web players Webplayer Hotkeys - Shortcuts for web players
ID ikmkicnmahfdilneilgibeppbnolgkaf
공식 URL https://chromewebstore.google.com/detail/webplayer-hotkeys-shortcu/ikmkicnmahfdilneilgibeppbnolgkaf
설명 Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.
파일 크기 52.04 KB
설치 횟수 887
현재 버전 1.3.2
최근 업데이트 2020-01-02
출시 날짜 2020-01-02
평점 4.24/5 총 17 개의 평점
개발자 Gabriel Duarte
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/GabrielDuarteM/Webplayer-Hotkeys
도움말 페이지 URL https://github.com/GabrielDuarteM/Webplayer-Hotkeys/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Webplayer Hotkeys - Shortcuts for web players",
    "version": "1.3.2",
    "description": "Assign hotkeys to play\/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.",
    "icons": {
        "128": "icon.png"
    },
    "author": "Gabriel Duarte",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "prev": {
            "description": "Previous music",
            "suggested_key": "Alt+Shift+Comma",
            "global": true
        },
        "play": {
            "description": "Play\/pause",
            "suggested_key": "Alt+Shift+P",
            "global": true
        },
        "next": {
            "description": "Next music",
            "suggested_key": "Alt+Shift+Period",
            "global": true
        }
    },
    "homepage_url": "https:\/\/github.com\/GabrielQDuarte\/Webplayer-Hotkeys\/tree\/master",
    "incognito": "split",
    "permissions": [
        "*:\/\/*.spotify.com\/*",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/soundcloud.com\/*",
        "*:\/\/*.deezer.com\/*",
        "tabs"
    ]
}