Mini Hype Machine
Pause, skip, favorite, and read about each song on Hypem.com without ever having to find the tab!
¿Qué es Mini Hype Machine?
Mini Hype Machine es una extensión de Chrome desarrollada por Mark Dunphy, y su función principal es "Pause, skip, favorite, and read about each song on Hypem.com without ever having to find the tab!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Mini Hype Machine
Descarga archivos de extensión Mini Hype Machine 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
Last updated: June 14th, 2014 This extension allows you to play, pause, skip, favorite, and read all about songs on Hype Machine (hypem.com) without needing to find the tab! You will need to refresh the Hype Machine if you have it open before using this extension. Known Issues v2.3 - As always, report bugs/issues to me. @dunphtastic or [email protected] Change Log (v2.3) - Update some graphics to look better on retina displays. - Minor design changes - Add hotkey support! Thanks to Chris Best (github.com/chr1sbest), you can now use the following hotkeys when you have the popup window open. - Pause/Play: Spacebar - Next: j (or right arrow) - Previous: k (or left arrow) - Favorite: f Feel free to shoot me an email directly at [email protected] (or tweet @dunphtastic) if you have any trouble with the extension. Also feel free to email me with any bug reports, feature requests, or just to say hi. Thanks!
Información Básica de la Extensión
Nombre | Mini Hype Machine |
ID | gapbfjblfificgojgkfjdlhcdbifeflb |
URL Oficial | https://chromewebstore.google.com/detail/mini-hype-machine/gapbfjblfificgojgkfjdlhcdbifeflb |
Descripción | Pause, skip, favorite, and read about each song on Hypem.com without ever having to find the tab! |
Tamaño del Archivo | 71.5 KB |
Cantidad de Instalaciones | 330 |
Versión Actual | 2.3 |
Última Actualización | 2014-06-14 |
Fecha de Publicación | 2014-06-14 |
Calificación | 4.40/5 Total de 10 Calificaciones |
Desarrollador | Mark Dunphy |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mini Hype Machine", "version": "2.3", "manifest_version": 2, "description": "Pause, skip, favorite, and read about each song on Hypem.com without ever having to find the tab!", "permissions": [ "tabs" ], "browser_action": { "default_title": "Mini Hype Machine", "default_icon": "images\/icon16.png", "default_popup": "pop.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/hypem.com\/*" ], "js": [ "js\/jquery.min.js", "js\/Parser.js", "js\/hype-script.js" ] } ] } |