Plauser

A Chrome extension that allows you to play/pause your current playing track from any tab.

Plauser란 무엇입니까?

Plauser은(는) Kieran O'Neill에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension that allows you to play/pause your current playing track from any tab."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Simplex Sigillum Veri...

Plauser simply adds a browser button that allows you to play/pause (plause) your current playing music track.

You can plause your current track from any browser tab.

Plauser supports the following music services:
- Google Music
- Spotify
- YouTube
- Grooveshark
- SoundCloud
- ...more coming soon!

What's new in 0.9.1!

- Plauser now allows you to bind a keystroke through the options menu. Try it out and start plausing, using the keyboard, from any tab!

Source available on GitHub: https://github.com/kieranroneill/plauser                    

확장 프로그램 기본 정보

이름 Plauser Plauser
ID knhcbcbmbdififpcffkphaianpojnpai
공식 URL https://chromewebstore.google.com/detail/plauser/knhcbcbmbdififpcffkphaianpojnpai
설명 A Chrome extension that allows you to play/pause your current playing track from any tab.
파일 크기 62.78 KB
설치 횟수 83
현재 버전 0.9.1
최근 업데이트 2014-10-29
출시 날짜 2014-10-29
평점 5.00/5 총 7 개의 평점
개발자 Kieran O'Neill
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kieranroneill/plauser
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Plauser",
    "short_name": "Plauser",
    "description": "A Chrome extension that allows you to play\/pause your current playing track from any tab.",
    "version": "0.9.1",
    "author": "Kieran O'Neill",
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/play.google.com\/music\/*",
        "https:\/\/play.spotify.com\/*",
        "https:\/\/www.youtube.com\/*",
        "http:\/\/grooveshark.com\/*",
        "https:\/\/soundcloud.com\/*"
    ],
    "icons": {
        "16": "images\/icon-plauser-16.png",
        "48": "images\/icon-plauser-48.png",
        "128": "images\/icon-plauser-128.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "images\/icon-plauser-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-scripts\/content-script-key-event.js",
                "js\/global.js"
            ],
            "run_at": "document_start"
        }
    ]
}