BGSOUND support in Chrome

Enable BGSOUND tags within Chrome.

ما هو BGSOUND support in Chrome؟

BGSOUND support in Chrome هو إضافة Chrome تم تطويرها بواسطة Hard Solutions، والميزة الرئيسية لها هي "Enable BGSOUND tags within Chrome.".

تحميل ملف CRX للإضافة BGSOUND support in Chrome

قم بتنزيل ملفات الامتداد BGSOUND support in Chrome بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم BGSOUND support in Chrome BGSOUND support in Chrome
ID akhnhkiankecgfkpdpdkidpefjjgpfhp
عنوان URL الرسمي https://chrome.google.com/webstore/detail/bgsound-support-in-chrome/akhnhkiankecgfkpdpdkidpefjjgpfhp
الوصف Enable BGSOUND tags within Chrome.
حجم الملف 83.67 KB
عدد التثبيتات 134
النسخة الحالية 0.0.2
آخر تحديث 2014-09-01
تاريخ النشر 2014-09-01
تقييم 2.50/5 مجموع تقييمات 2
المطور Hard Solutions
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
        }
    ]
}