MuteMachine

Automatically skip songs on the HypeMachine

¿Qué es MuteMachine?

MuteMachine es una extensión de Chrome desarrollada por Unknown, y su función principal es "Automatically skip songs on the HypeMachine".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión MuteMachine

Descarga archivos de extensión MuteMachine 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

                        MuteMachine helps solve a common problem for users of the HypeMachine, wanting to consistently skip over songs they don't like. MuteMachine automatically skips over any songs users "mute." 

Maybe you're not as into the new Lana Del Rey album as everyone else, or you've gotten a little bored of that song everyone has just gotten into. Once you click the mute button on a song, MuteMachine will automatically skip to the next song anytime that it tries to play on the HypeMachine. 

For people who use the HypeMachine every day and as their primary source of music, this extension is a must have to make the experience a little more personal!                    

Información Básica de la Extensión

Nombre MuteMachine MuteMachine
ID jccdmapgmmonababhfbflfoekpphbkhg
URL Oficial https://chromewebstore.google.com/detail/mutemachine/jccdmapgmmonababhfbflfoekpphbkhg
Descripción Automatically skip songs on the HypeMachine
Tamaño del Archivo 78 KB
Cantidad de Instalaciones 12
Versión Actual 1.0
Última Actualización 2014-06-29
Fecha de Publicación 2014-06-29
Calificación 4.25/5 Total de 4 Calificaciones
Desarrollador Unknown
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MuteMachine",
    "short_name": "mutem",
    "description": "Automatically skip songs on the HypeMachine",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/hypem.com\/*",
                "http:\/\/hypem.com\/*"
            ],
            "js": [
                "jquery.js",
                "mutemachine.js"
            ],
            "css": [
                "mutemachine.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}