HoverPlay

Easier interaction with audio links on the web.

HoverPlay란 무엇입니까?

HoverPlay은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easier interaction with audio links on the web."입니다.

확장 프로그램 스크린샷

screenshot

HoverPlay 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Just hover over an audio link let HoverPlay do the rest! An audio player will appear in the bottom right of the page.

When the audio player is on the screen, use spacebar to play and pause the audio and esc to remove the player.                    

확장 프로그램 기본 정보

이름 HoverPlay HoverPlay
ID hkbbcjmckhhnpniafekogpfonhiomnal
공식 URL https://chromewebstore.google.com/detail/hoverplay/hkbbcjmckhhnpniafekogpfonhiomnal
설명 Easier interaction with audio links on the web.
파일 크기 53.72 KB
설치 횟수 472
현재 버전 1.0.4
최근 업데이트 2013-02-25
출시 날짜 2013-02-24
평점 4.40/5 총 10 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HoverPlay",
    "version": "1.0.4",
    "manifest_version": 2,
    "description": "Easier interaction with audio links on the web.",
    "background": {
        "scripts": [
            "jquery.js",
            "bg.js"
        ]
    },
    "options_page": "options\/options.html",
    "icons": {
        "48": "icons\/hoverplay48.png",
        "128": "icons\/hoverplay128.png"
    },
    "page_action": {
        "default_icon": "icons\/hoverplay38.png",
        "default_title": "Disable HoverPlay",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "jquery-ui.min.js",
                "contentscript.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}