remoteOne

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

¿Qué es remoteOne?

remoteOne es una extensión de Chrome desarrollada por maliniak, y su función principal es "Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión remoteOne

Descarga archivos de extensión remoteOne en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre remoteOne remoteOne
ID hmkoiabojmciofgiednpjdkfkbfojnki
URL Oficial https://chrome.google.com/webstore/detail/remoteone/hmkoiabojmciofgiednpjdkfkbfojnki
Descripción Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button
Tamaño del Archivo 516 KB
Cantidad de Instalaciones 125
Versión Actual 1.3
Última Actualización 2017-03-19
Fecha de Publicación 2017-03-19
Calificación 4.86/5 Total de 14 Calificaciones
Desarrollador maliniak
Tipo de Pago free
Sitio Web de la Extensión https://github.com/maliniakh/remoteOne
Idiomas Soportados 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\/*"
            ]
        }
    ]
}