Youtube Audio Fixer
Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!
Youtube Audio Fixerとは何ですか?
Youtube Audio Fixerはpurifier.phoenixによって開発されたChromeの拡張機能で、その主な機能は「Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!」です。
拡張機能のスクリーンショット
Youtube Audio Fixer拡張機能のCRXファイルをダウンロード
Youtube Audio Fixer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This was created with the sole intention of fixing audio being one-sided or unbalanced, which if wearing headphones creates an annoyance, which this simple extension should remedy.
For Testing See
https://www.youtube.com/watch?v=6TWJaFD6R2s 拡張機能の基本情報
| 名前 | |
| ID | kffimnekdgebaakicpmjkpafgkfejdmi |
| 公式URL | https://chromewebstore.google.com/detail/youtube-audio-fixer/kffimnekdgebaakicpmjkpafgkfejdmi |
| 説明 | Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder! |
| ファイルサイズ | 112 KB |
| インストール数 | 1,170 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2019-10-10 |
| 公開日 | 2019-10-10 |
| 評価 | 5.00/5 合計 5 レビュー |
| 開発者 | purifier.phoenix |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Audio Fixer",
"description": "Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!",
"version": "1.0",
"manifest_version": 2,
"icons": {
"16": "yt16x16.png",
"32": "yt32x32.png",
"64": "yt64x64.png",
"128": "yt128x128.png",
"256": "yt256x256.png",
"512": "yt512x512.png"
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
"jquery.js",
"StereoFixer.js"
],
"css": [
"StereoFixer.css"
],
"run_at": "document_end",
"all_frames": true
}
]
} | |