Mini Hype Machine

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

Mini Hype Machine란 무엇입니까?

Mini Hype Machine은(는) Mark Dunphy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pause, skip, favorite, and read about each song on Hypem.com without ever having to find the tab!"입니다.

확장 프로그램 스크린샷

screenshot

Mini Hype Machine 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Mini Hype Machine Mini Hype Machine
ID gapbfjblfificgojgkfjdlhcdbifeflb
공식 URL https://chromewebstore.google.com/detail/mini-hype-machine/gapbfjblfificgojgkfjdlhcdbifeflb
설명 Pause, skip, favorite, and read about each song on Hypem.com without ever having to find the tab!
파일 크기 71.5 KB
설치 횟수 330
현재 버전 2.3
최근 업데이트 2014-06-14
출시 날짜 2014-06-14
평점 4.40/5 총 10 개의 평점
개발자 Mark Dunphy
결제 유형 free
지원되는 언어 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"
            ]
        }
    ]
}