remoteOne

Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button

remoteOne란 무엇입니까?

remoteOne은(는) maliniak에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        It can play, pause, go to next or previous songs on all supported sites.

Comes in handy when someone sends you, say, a Youtube video link and you happen to be listening to Spotify at the moment - just hit the appropriate button to pause Spotify without need to switch through the tabs. When you are done with that funny YT cats compilation video, you can simply resume your music :)

It is also open source:
https://github.com/maliniakh/remoteOne

Supported sites:
- Youtube
- Spotify
- SoundCloud
- Mixcloud                    

확장 프로그램 기본 정보

이름 remoteOne remoteOne
ID hmkoiabojmciofgiednpjdkfkbfojnki
공식 URL https://chrome.google.com/webstore/detail/remoteone/hmkoiabojmciofgiednpjdkfkbfojnki
설명 Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button
파일 크기 516 KB
설치 횟수 125
현재 버전 1.3
최근 업데이트 2017-03-19
출시 날짜 2017-03-19
평점 4.86/5 총 14 개의 평점
개발자 maliniak
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/maliniakh/remoteOne
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "remoteOne",
    "description": "Enables controlling audio \/ video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button",
    "version": "1.3",
    "browser_action": {
        "default_icon": "img\/remoteOne19.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "bookmarks",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "lib\/jquery-2.1.4.min.js",
                "lib\/purl.js",
                "lib\/jquery.waitForElement.js",
                "sites\/site.js",
                "sites\/youtube.js",
                "sites\/soundcloud.js",
                "sites\/mixcloud.js",
                "sites\/spotify.js",
                "sites\/mynoise.js",
                "content-script.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/soundcloud.com\/*",
                "https:\/\/www.mixcloud.com\/*",
                "https:\/\/play.spotify.com\/*",
                "http:\/\/mynoise.net\/NoiseMachines\/*"
            ]
        }
    ]
}