YouTube Normalizer
Normalizes the sound level of all Youtube™ videos.
YouTube Normalizer란 무엇입니까?
YouTube Normalizer은(는) Daniel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Normalizes the sound level of all Youtube™ videos."입니다.
확장 프로그램 스크린샷
YouTube Normalizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
FREE Sound Normalizer is fully automatic and automagically adjust all Youtube™ videos to the same sound-level. Also blocks ads and let you download the video for watching offline later. Note: YouTube is trademark of Google Inc. Use of this trademark is subject to Google Permissions. This extension is NOT associated with YouTube or Google Inc in any ways.
확장 프로그램 기본 정보
이름 | YouTube Normalizer |
ID | ihlalbalpneokgcdiafhkjpnbekhlnmc |
공식 URL | https://chromewebstore.google.com/detail/youtube-normalizer/ihlalbalpneokgcdiafhkjpnbekhlnmc |
설명 | Normalizes the sound level of all Youtube™ videos. |
파일 크기 | 90.52 KB |
설치 횟수 | 2,617 |
현재 버전 | 1.3.4 |
최근 업데이트 | 2020-12-21 |
출시 날짜 | 2020-12-11 |
평점 | 3.35/5 총 49 개의 평점 |
개발자 | Daniel |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.nrmlzr.com |
지원되는 언어 | id,ms,de,en,fil,fr,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,hi,th,ar,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "default_locale": "en", "version": "1.3.4", "permissions": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*", "tabs", "storage", "webRequest", "webRequestBlocking", "downloads", "downloads.shelf", "contextMenus" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ], "js": [ "src\/knyttneve.js" ] }, { "all_frames": true, "run_at": "document_end", "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ], "js": [ "src\/reklame.js" ] } ], "background": { "persistent": true, "page": "src\/chrome.html" }, "icons": { "48": "src\/img\/nrmlzr48.png", "128": "src\/img\/nrmlzr128.png" }, "browser_action": { "default_icon": { "48": "src\/img\/nrmlzr48.png", "128": "src\/img\/nrmlzr128.png" }, "default_title": "Normalizer", "default_popup": "src\/popup.html" }, "homepage_url": "https:\/\/nrmlzr.com\/?extension", "web_accessible_resources": [ "src\/*", "src\/img\/*" ], "minimum_chrome_version": "65" } |