BGSOUND support in Chrome

Enable BGSOUND tags within Chrome.

Hvad er BGSOUND support in Chrome?

BGSOUND support in Chrome er en Chrome-udvidelse udviklet af Hard Solutions, og dens hovedfunktion er "Enable BGSOUND tags within Chrome.".

Download BGSOUND support in Chrome-udvidelses-CRX-fil

Download BGSOUND support in Chrome-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn BGSOUND support in Chrome BGSOUND support in Chrome
ID akhnhkiankecgfkpdpdkidpefjjgpfhp
Officiel URL https://chrome.google.com/webstore/detail/bgsound-support-in-chrome/akhnhkiankecgfkpdpdkidpefjjgpfhp
Beskrivelse Enable BGSOUND tags within Chrome.
Filstørrelse 83.67 KB
Antal Installationer 134
Nuværende Version 0.0.2
Senest Opdateret 2014-09-01
Udgivelsesdato 2014-09-01
Bedømmelse 2.50/5 Samlet 2 Bedømmelser
Udvikler Hard Solutions
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}