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ファイルをダウンロード

remoteOne拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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\/*"
            ]
        }
    ]
}