BGSOUND support in Chrome

Enable BGSOUND tags within Chrome.

Cos'è BGSOUND support in Chrome?

BGSOUND support in Chrome è un'estensione di Chrome sviluppata da Hard Solutions, e la sua funzione principale è "Enable BGSOUND tags within Chrome.".

Scarica il file CRX dell'estensione BGSOUND support in Chrome

Scarica i file di estensione BGSOUND support in Chrome in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome BGSOUND support in Chrome BGSOUND support in Chrome
ID akhnhkiankecgfkpdpdkidpefjjgpfhp
URL Ufficiale https://chrome.google.com/webstore/detail/bgsound-support-in-chrome/akhnhkiankecgfkpdpdkidpefjjgpfhp
Descrizione Enable BGSOUND tags within Chrome.
Dimensione del File 83.67 KB
Conteggio Installazioni 134
Versione Corrente 0.0.2
Ultimo Aggiornamento 2014-09-01
Data di Pubblicazione 2014-09-01
Valutazione 2.50/5 Totale 2 Valutazioni
Sviluppatore Hard Solutions
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}