HoverPlay

Easier interaction with audio links on the web.

O que é HoverPlay?

HoverPlay é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Easier interaction with audio links on the web.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão HoverPlay

Baixe arquivos de extensão HoverPlay no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome HoverPlay HoverPlay
ID hkbbcjmckhhnpniafekogpfonhiomnal
URL Oficial https://chromewebstore.google.com/detail/hoverplay/hkbbcjmckhhnpniafekogpfonhiomnal
Descrição Easier interaction with audio links on the web.
Tamanho do Arquivo 53.72 KB
Contagem de Instalações 472
Versão Atual 1.0.4
Última Atualização 2013-02-25
Data de Publicação 2013-02-24
Classificação 4.40/5 Total de 10 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}