Music Pause/Resume

Pause and resume streaming music with a keyboard shortcut

Music Pause/Resume란 무엇입니까?

Music Pause/Resume은(는) josepcn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pause and resume streaming music with a keyboard shortcut"입니다.

확장 프로그램 스크린샷

screenshot

Music Pause/Resume 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Pause and resume your music with just one key shortcut, anywhere from your desktop.

Currently supported services:
- Soundcloud
- Rdio
- Deezer
- Google Pay Music
- BBC Radio 1 (pop-up window)
- Mixcloud

Go to chrome://extensions/ to set up the keyboard shortcut you want to use for pausing / resuming your music.

Super simple, no icon on your browser, no popup, just one hotkey

Your favorite service is not listed? Get in contact! will see what we can do or if you are a developer, go to our github page.                    

확장 프로그램 기본 정보

이름 Music Pause/Resume Music Pause/Resume
ID hnpodgbofjolhnfeeakhkjfonnhekaim
공식 URL https://chrome.google.com/webstore/detail/music-pauseresume/hnpodgbofjolhnfeeakhkjfonnhekaim
설명 Pause and resume streaming music with a keyboard shortcut
파일 크기 19.36 KB
설치 횟수 15
현재 버전 0.1.4
최근 업데이트 2015-05-27
출시 날짜 2015-05-27
평점 1.00/5 총 1 개의 평점
개발자 josepcn
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/josepcn/caesura
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Music Pause\/Resume",
    "short_name": "caesura",
    "description": "Pause and resume streaming music with a keyboard shortcut",
    "version": "0.1.4",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "commands": {
        "toggle-audio-playback": {
            "suggested_key": {
                "default": "Ctrl+Shift+0"
            },
            "description": "Toggle audio playback",
            "global": true
        },
        "debug": {
            "suggested_key": {
                "default": "Ctrl+Shift+9"
            },
            "description": "debug",
            "global": false
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "common.js",
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "128": "icons\/icon_key_128.png"
    },
    "background": {
        "scripts": [
            "common.js",
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage",
        "nativeMessaging"
    ]
}