BGSOUND support in Chrome

Enable BGSOUND tags within Chrome.

Vad är BGSOUND support in Chrome?

BGSOUND support in Chrome är en Chrome-tillägg utvecklad av Hard Solutions, och dess huvudfunktion är "Enable BGSOUND tags within Chrome.".

Ladda ner BGSOUND support in Chrome-förlängningens CRX-fil

Ladda ner BGSOUND support in Chrome-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn BGSOUND support in Chrome BGSOUND support in Chrome
ID akhnhkiankecgfkpdpdkidpefjjgpfhp
Officiell webbadress https://chrome.google.com/webstore/detail/bgsound-support-in-chrome/akhnhkiankecgfkpdpdkidpefjjgpfhp
Beskrivning Enable BGSOUND tags within Chrome.
Filstorlek 83.67 KB
Antal Installationer 134
Aktuell Version 0.0.2
Senast Uppdaterad 2014-09-01
Publiceringsdatum 2014-09-01
Betyg 2.50/5 Totalt 2 Betyg
Utvecklare Hard Solutions
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}