Mini Hype Machine

Pause, skip, favorite, and read about each song on Hypem.com without ever having to find the tab!

Co je Mini Hype Machine?

Mini Hype Machine je rozšíření Chrome vyvinuté Mark Dunphy, a jeho hlavní funkcí je „Pause, skip, favorite, and read about each song on Hypem.com without ever having to find the tab!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Mini Hype Machine

Stáhněte si soubory rozšíření Mini Hype Machine ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Mini Hype Machine Mini Hype Machine
ID gapbfjblfificgojgkfjdlhcdbifeflb
Oficiální URL https://chromewebstore.google.com/detail/mini-hype-machine/gapbfjblfificgojgkfjdlhcdbifeflb
Popis Pause, skip, favorite, and read about each song on Hypem.com without ever having to find the tab!
Velikost souboru 71.5 KB
Počet instalací 330
Aktuální Verze 2.3
Poslední Aktualizace 2014-06-14
Datum Vydání 2014-06-14
Hodnocení 4.40/5 Celkem 10 Hodnocení
Vývojář Mark Dunphy
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}