YouTube Shorts Volume Control
Allows a convenient slider based UI element for controlling volume in youtube shorts UI
YouTube Shorts Volume Control란 무엇입니까?
YouTube Shorts Volume Control은(는) Priya에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows a convenient slider based UI element for controlling volume in youtube shorts UI"입니다.
확장 프로그램 스크린샷
YouTube Shorts Volume Control 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension caters to everyone who is searching for a extension to control the volume of youtube shorts in their PC. This functionaility is currently missing on web based UI on laptops and PCs. This extension adds an UI element, as a convenient range slider that helps the user to control the volume of youtube shorts in a fine grained manner. Fixed some small bugs.
확장 프로그램 기본 정보
이름 | YouTube Shorts Volume Control |
ID | iocnlgcooancaojnpkonjpcocmcjkgle |
공식 URL | https://chromewebstore.google.com/detail/youtube-shorts-volume-con/iocnlgcooancaojnpkonjpcocmcjkgle |
설명 | Allows a convenient slider based UI element for controlling volume in youtube shorts UI |
파일 크기 | 4.57 KB |
설치 횟수 | 68 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2023-11-25 |
출시 날짜 | 2023-11-23 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Priya |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Shorts Volume Control", "version": "0.0.3", "description": "Allows a convenient slider based UI element for controlling volume in youtube shorts UI", "permissions": [ "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "action": { "default_icon": [], "default_title": "Youtube Shorts Vol Control", "default_popup": "popup.html" }, "manifest_version": 3 } |