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! 擴展基本資訊
| 名稱 | |
| ID | mpkdmnddeijnncnnbmoilipjadjhnidd |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
} | |