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 |
| 官方網址 | 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 |
| 電子郵箱 | [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
}
]
} | |