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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" ] } |