BGSOUND support in Chrome

Enable BGSOUND tags within Chrome.

What is BGSOUND support in Chrome?

BGSOUND support in Chrome is a Chrome extension developed by Hard Solutions, and its main feature is "Enable BGSOUND tags within Chrome.".

Download BGSOUND support in Chrome Extension CRX File

Download BGSOUND support in Chrome extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name BGSOUND support in Chrome BGSOUND support in Chrome
ID akhnhkiankecgfkpdpdkidpefjjgpfhp
Official URL https://chrome.google.com/webstore/detail/bgsound-support-in-chrome/akhnhkiankecgfkpdpdkidpefjjgpfhp
Description Enable BGSOUND tags within Chrome.
File Size 83.67 KB
Installation Count 134
Current Version 0.0.2
Last Updated 2014-09-01
Publish Date 2014-09-01
Rating 2.50/5 Total 2 Ratings
Developer Hard Solutions
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}