YouTube TV Volume control
Runs on Youtube.com/TV and adds volume control to the player controls panel
YouTube TV Volume controlとは何ですか?
YouTube TV Volume controlはAnton Shashokによって開発されたChromeの拡張機能で、その主な機能は「Runs on Youtube.com/TV and adds volume control to the player controls panel」です。
拡張機能のスクリーンショット
YouTube TV Volume control拡張機能のCRXファイルをダウンロード
YouTube TV Volume control拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Version 1.0.2.4 Removed Extra host loading. Added some design. Version 0.9.8.1 New Youtube App support Version 0.8.1 Fix: Your Device Type is no longer supported. Version 0.7.5 YouTube update fix Version 0.7.2 Position fix Version 0.7.1 Now you can use + / - keys to control volume! Due to changes made to YouTube TV. It needs to be updated. Enjoy!
拡張機能の基本情報
名前 | YouTube TV Volume control |
ID | mpkdmnddeijnncnnbmoilipjadjhnidd |
公式URL | https://chromewebstore.google.com/detail/youtube-tv-volume-control/mpkdmnddeijnncnnbmoilipjadjhnidd |
説明 | Runs on Youtube.com/TV and adds volume control to the player controls panel |
ファイルサイズ | 73.77 KB |
インストール数 | 1,237 |
現在のバージョン | 1.0.2.4 |
最終更新日 | 2020-12-28 |
公開日 | 2020-06-22 |
評価 | 3.64/5 合計 14 レビュー |
開発者 | Anton Shashok |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube TV Volume control", "version": "1.0.2.4", "description": "Runs on Youtube.com\/TV and adds volume control to the player controls panel", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [], "browser_action": { "default_icon": "img\/icon-19-grey.png", "default_title": "YouTubeTVPanel", "icons": { "48": "img\/icon-48.png", "19": "img\/icon-19-grey.png", "128": "img\/icon-128.png" } }, "icons": { "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "permissions": [ "tabs", "webRequest", "webRequestBlocking", "*:\/\/*.youtube.com\/*", "*:\/\/youtube.com\/tv" ] } |