MuteMachine
Automatically skip songs on the HypeMachine
Was ist MuteMachine?
MuteMachine ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Automatically skip songs on the HypeMachine".
Erweiterungsscreenshots
MuteMachine-Erweiterungs-CRX-Datei herunterladen
Laden Sie MuteMachine-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | MuteMachine |
ID | jccdmapgmmonababhfbflfoekpphbkhg |
Offizielle URL | https://chromewebstore.google.com/detail/mutemachine/jccdmapgmmonababhfbflfoekpphbkhg |
Beschreibung | Automatically skip songs on the HypeMachine |
Dateigröße | 78 KB |
Installationsanzahl | 12 |
Aktuelle Version | 1.0 |
Letztes Update | 2014-06-29 |
Veröffentlichungsdatum | 2014-06-29 |
Bewertung | 4.25/5 Insgesamt 4 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |