BGSOUND support in Chrome

Enable BGSOUND tags within Chrome.

Was ist BGSOUND support in Chrome?

BGSOUND support in Chrome ist eine Chrome-Erweiterung, die von Hard Solutions entwickelt wurde, und ihr Hauptmerkmal ist "Enable BGSOUND tags within Chrome.".

BGSOUND support in Chrome-Erweiterungs-CRX-Datei herunterladen

Laden Sie BGSOUND support in Chrome-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name BGSOUND support in Chrome BGSOUND support in Chrome
ID akhnhkiankecgfkpdpdkidpefjjgpfhp
Offizielle URL https://chrome.google.com/webstore/detail/bgsound-support-in-chrome/akhnhkiankecgfkpdpdkidpefjjgpfhp
Beschreibung Enable BGSOUND tags within Chrome.
Dateigröße 83.67 KB
Installationsanzahl 134
Aktuelle Version 0.0.2
Letztes Update 2014-09-01
Veröffentlichungsdatum 2014-09-01
Bewertung 2.50/5 Insgesamt 2 Bewertungen
Entwickler Hard Solutions
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}