BGSOUND support in Chrome

Enable BGSOUND tags within Chrome.

¿Qué es BGSOUND support in Chrome?

BGSOUND support in Chrome es una extensión de Chrome desarrollada por Hard Solutions, y su función principal es "Enable BGSOUND tags within Chrome.".

Descargar Archivo CRX de la Extensión BGSOUND support in Chrome

Descarga archivos de extensión BGSOUND support in Chrome 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

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

Información Básica de la Extensión

Nombre BGSOUND support in Chrome BGSOUND support in Chrome
ID akhnhkiankecgfkpdpdkidpefjjgpfhp
URL Oficial https://chrome.google.com/webstore/detail/bgsound-support-in-chrome/akhnhkiankecgfkpdpdkidpefjjgpfhp
Descripción Enable BGSOUND tags within Chrome.
Tamaño del Archivo 83.67 KB
Cantidad de Instalaciones 134
Versión Actual 0.0.2
Última Actualización 2014-09-01
Fecha de Publicación 2014-09-01
Calificación 2.50/5 Total de 2 Calificaciones
Desarrollador Hard Solutions
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        }
    ]
}