BGSOUND support in Chrome

Enable BGSOUND tags within Chrome.

BGSOUND support in Chrome là gì?

BGSOUND support in Chrome là một tiện ích mở rộng Chrome được phát triển bởi Hard Solutions, và tính năng chính của nó là "Enable BGSOUND tags within Chrome.".

Tải xuống tệp CRX của tiện ích mở rộng BGSOUND support in Chrome

Tải xuống các tệp mở rộng BGSOUND support in Chrome dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BGSOUND support in Chrome BGSOUND support in Chrome
ID akhnhkiankecgfkpdpdkidpefjjgpfhp
URL Chính Thức https://chrome.google.com/webstore/detail/bgsound-support-in-chrome/akhnhkiankecgfkpdpdkidpefjjgpfhp
Mô tả Enable BGSOUND tags within Chrome.
Kích Thước Tệp 83.67 KB
Số Lần Cài Đặt 134
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2014-09-01
Ngày Phát Hành 2014-09-01
Đánh Giá 2.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Hard Solutions
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}