Wide audio players
Make audio players 100% wide.
Wide audio playersとは何ですか?
Wide audio playersはStefanによって開発されたChromeの拡張機能で、その主な機能は「Make audio players 100% wide.」です。
拡張機能のスクリーンショット
Wide audio players拡張機能のCRXファイルをダウンロード
Wide audio players拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Makes the audio player 100% wide for audio files. Source code: https://gist.github.com/stefansundin/7f60c35de8e0a6c17dd9be9ce9345965 拡張機能の基本情報
| 名前 | |
| ID | nhimhabjmplhihabgdijoeggnkalfkme |
| 公式URL | https://chromewebstore.google.com/detail/wide-audio-players/nhimhabjmplhihabgdijoeggnkalfkme |
| 説明 | Make audio players 100% wide. |
| ファイルサイズ | 3.09 KB |
| インストール数 | 34 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2022-06-24 |
| 公開日 | 2018-01-14 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | Stefan |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://gist.github.com/stefansundin/7f60c35de8e0a6c17dd9be9ce9345965 |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Wide audio players",
"version": "1.1",
"description": "Make audio players 100% wide.",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*.aac*",
"*:\/\/*\/*.flac*",
"*:\/\/*\/*.m4a*",
"*:\/\/*\/*.mka*",
"*:\/\/*\/*.mp3*",
"*:\/\/*\/*.ogg*",
"*:\/\/*\/*.opus*",
"*:\/\/*\/*.wav*",
"file:\/\/*\/*.aac*",
"file:\/\/*\/*.flac*",
"file:\/\/*\/*.m4a*",
"file:\/\/*\/*.mka*",
"file:\/\/*\/*.mp3*",
"file:\/\/*\/*.ogg*",
"file:\/\/*\/*.opus*",
"file:\/\/*\/*.wav*"
],
"css": [
"main.css"
],
"all_frames": true
}
]
} | |