MuteMachine
Automatically skip songs on the HypeMachine
Qu'est-ce que MuteMachine ?
MuteMachine est une extension Chrome développée par Unknown, et sa fonction principale est "Automatically skip songs on the HypeMachine".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension MuteMachine
Téléchargez les fichiers d'extension MuteMachine au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | MuteMachine |
ID | jccdmapgmmonababhfbflfoekpphbkhg |
URL Officiel | https://chromewebstore.google.com/detail/mutemachine/jccdmapgmmonababhfbflfoekpphbkhg |
Description | Automatically skip songs on the HypeMachine |
Taille du Fichier | 78 KB |
Nombre d'Installations | 12 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-06-29 |
Date de Publication | 2014-06-29 |
Évaluation | 4.25/5 Total 4 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |