HoverPlay

Easier interaction with audio links on the web.

¿Qué es HoverPlay?

HoverPlay es una extensión de Chrome desarrollada por Unknown, y su función principal es "Easier interaction with audio links on the web.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión HoverPlay

Descarga archivos de extensión HoverPlay 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

                        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.                    

Información Básica de la Extensión

Nombre HoverPlay HoverPlay
ID hkbbcjmckhhnpniafekogpfonhiomnal
URL Oficial https://chromewebstore.google.com/detail/hoverplay/hkbbcjmckhhnpniafekogpfonhiomnal
Descripción Easier interaction with audio links on the web.
Tamaño del Archivo 53.72 KB
Cantidad de Instalaciones 472
Versión Actual 1.0.4
Última Actualización 2013-02-25
Fecha de Publicación 2013-02-24
Calificación 4.40/5 Total de 10 Calificaciones
Desarrollador Unknown
Tipo de Pago free
Idiomas Soportados 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"
    ]
}