MuteMachine

Automatically skip songs on the HypeMachine

Co to jest MuteMachine?

MuteMachine to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Automatically skip songs on the HypeMachine”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia MuteMachine

Pobierz pliki rozszerzeń MuteMachine w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa MuteMachine MuteMachine
ID jccdmapgmmonababhfbflfoekpphbkhg
Oficjalny URL https://chromewebstore.google.com/detail/mutemachine/jccdmapgmmonababhfbflfoekpphbkhg
Opis Automatically skip songs on the HypeMachine
Rozmiar pliku 78 KB
Liczba instalacji 12
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-06-29
Data Publikacji 2014-06-29
Ocena 4.25/5 Łącznie 4 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
    }
}