BGSOUND support in Chrome

Enable BGSOUND tags within Chrome.

Co to jest BGSOUND support in Chrome?

BGSOUND support in Chrome to rozszerzenie Chrome opracowane przez Hard Solutions, a jego główną funkcją jest „Enable BGSOUND tags within Chrome.”.

Pobierz plik CRX rozszerzenia BGSOUND support in Chrome

Pobierz pliki rozszerzeń BGSOUND support in Chrome w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa BGSOUND support in Chrome BGSOUND support in Chrome
ID akhnhkiankecgfkpdpdkidpefjjgpfhp
Oficjalny URL https://chrome.google.com/webstore/detail/bgsound-support-in-chrome/akhnhkiankecgfkpdpdkidpefjjgpfhp
Opis Enable BGSOUND tags within Chrome.
Rozmiar pliku 83.67 KB
Liczba instalacji 134
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2014-09-01
Data Publikacji 2014-09-01
Ocena 2.50/5 Łącznie 2 Oceny
Deweloper Hard Solutions
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}