BGSOUND support in Chrome
Enable BGSOUND tags within Chrome.
BGSOUND support in Chromeとは何ですか?
BGSOUND support in ChromeはHard Solutionsによって開発されたChromeの拡張機能で、その主な機能は「Enable BGSOUND tags within Chrome.」です。
BGSOUND support in Chrome拡張機能のCRXファイルをダウンロード
BGSOUND support in Chrome拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
For old websites that still use the IE-only BGSOUND tag to make a sound, this extension will make those tags work 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 |
| Eメール | [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"
}
]
} | |