playpause

Pause and play again your music

playpause란 무엇입니까?

playpause은(는) Deliaz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pause and play again your music"입니다.

확장 프로그램 스크린샷

screenshot

playpause 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        PlayPause is a small button which allows to your music and video on pause and then play again. 
Currently supports: 
 – YouTube.com
 – SoundCloud.com
 – PromoDJ.com

It can be more effective if you will set keyboard shortcut on the button in your Chrome Extension page.                    

확장 프로그램 기본 정보

이름 playpause playpause
ID nphcoecmaigjlaadabjihhoaiaopcadk
공식 URL https://chromewebstore.google.com/detail/playpause/nphcoecmaigjlaadabjihhoaiaopcadk
설명 Pause and play again your music
파일 크기 10.48 KB
설치 횟수 72
현재 버전 2.0.1
최근 업데이트 2018-09-11
출시 날짜 2018-09-10
평점 5.00/5 총 5 개의 평점
개발자 Deliaz
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/deliaz/playpause
개인정보 보호 정책 페이지 URL https://clipboardextension.com/policy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "playpause",
    "version": "2.0.1",
    "description": "Pause and play again your music",
    "permissions": [
        "tabs",
        "*:\/\/promodj.com\/*",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/soundcloud.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "imgs\/38.png"
    },
    "icons": {
        "16": "imgs\/16.png",
        "48": "imgs\/48.png",
        "128": "imgs\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/promodj.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "inject.js"
    ]
}