BGSOUND support in Chrome

Enable BGSOUND tags within Chrome.

O que é BGSOUND support in Chrome?

BGSOUND support in Chrome é uma extensão do Chrome desenvolvida por Hard Solutions, e sua principal característica é "Enable BGSOUND tags within Chrome.".

Baixar o arquivo CRX da Extensão BGSOUND support in Chrome

Baixe arquivos de extensão BGSOUND support in Chrome 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

                        For old websites that still use the IE-only BGSOUND tag to make a sound, this extension will make those tags work in Chrome.                    

Informações Básicas da Extensão

Nome BGSOUND support in Chrome BGSOUND support in Chrome
ID akhnhkiankecgfkpdpdkidpefjjgpfhp
URL Oficial https://chrome.google.com/webstore/detail/bgsound-support-in-chrome/akhnhkiankecgfkpdpdkidpefjjgpfhp
Descrição Enable BGSOUND tags within Chrome.
Tamanho do Arquivo 83.67 KB
Contagem de Instalações 134
Versão Atual 0.0.2
Última Atualização 2014-09-01
Data de Publicação 2014-09-01
Classificação 2.50/5 Total de 2 Avaliações
Desenvolvedor Hard Solutions
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BGSOUND support in Chrome",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Enable BGSOUND tags within Chrome.",
    "homepage_url": "http:\/\/utilities.hardsolutions.co.uk",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "js\/background.html"
    },
    "options_page": "src\/options_custom\/index.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/**"
            ],
            "js": [
                "js\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}