Volume Booster for YouTube™
Increase the volume of the YouTube™ player twice, resembling the VLC player
Volume Booster for YouTube™란 무엇입니까?
Volume Booster for YouTube™은(는) MeryDev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Increase the volume of the YouTube™ player twice, resembling the VLC player"입니다.
확장 프로그램 스크린샷
Volume Booster for YouTube™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Volume Booster extension is a tool designed to enhance the audio output of supported media players. Whether you're watching videos or listening to music, this extension aims to elevate your audio experience by boosting the volume level beyond the standard limitations with greater clarity and impact. The extension installs a "2x" button next to the settings button of the YouTube player. It is disabled by default. If the user clicks the button once, the audio gain node is installed on the source node, causing the audio volume to increase level twice (200%; similar to VLC player). You can click the button once more to deactivate the boosting. Note: The compatibility of this extension with your audio equalizer extension may vary. Its compatibility is dependent on the method used by the equalizer to perform audio filtering, whether it is applied directly to the player (not compatible) or to the page itself (compatible). This extension supports volume boosting with keyboard shortcuts. Read the FAQs page for more info
확장 프로그램 기본 정보
이름 | Volume Booster for YouTube™ |
ID | camciclnnglajljifpjocnpmepnkajgi |
공식 URL | https://chromewebstore.google.com/detail/volume-booster-for-youtub/camciclnnglajljifpjocnpmepnkajgi |
설명 | Increase the volume of the YouTube™ player twice, resembling the VLC player |
파일 크기 | 87.95 KB |
설치 횟수 | 7,000 |
현재 버전 | 0.1.4 |
최근 업데이트 | 2024-02-19 |
출시 날짜 | 2023-06-24 |
평점 | 5.00/5 총 22 개의 평점 |
개발자 | MeryDev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://webextension.org/listing/volume-booster.html?from=youtube |
도움말 페이지 URL | https://webextension.org/listing/volume-booster.html?from=youtube |
개인정보 보호 정책 페이지 URL | https://add0n.com/policies/mery.dev.txt |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Volume Booster for YouTube\u2122", "description": "Increase the volume of the YouTube\u2122 player twice, resembling the VLC player", "version": "0.1.4", "manifest_version": 3, "permissions": [ "storage", "scripting" ], "host_permissions": [ "*:\/\/www.youtube.com\/*" ], "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "\/data\/inject.js" ], "css": [ "\/data\/inject.css" ], "run_at": "document_start", "all_frames": true } ], "homepage_url": "https:\/\/webextension.org\/listing\/volume-booster.html?from=youtube", "icons": { "16": "\/data\/icons\/16.png", "32": "\/data\/icons\/32.png", "48": "\/data\/icons\/48.png", "64": "\/data\/icons\/64.png", "128": "\/data\/icons\/128.png", "256": "\/data\/icons\/256.png", "512": "\/data\/icons\/512.png" }, "commands": { "boost-2x": { "description": "toggle and adjust 2x boosting" }, "boost-3x": { "description": "toggle and adjust 3x boosting" }, "boost-4x": { "description": "toggle and adjust 4x boosting" } } } |