YouTube Ad Mute
Automatically mutes the volume of YouTube ads. One of the options for distributors.
YouTube Ad Mute란 무엇입니까?
YouTube Ad Mute은(는) bgdaewalkman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically mutes the volume of YouTube ads. One of the options for distributors."입니다.
확장 프로그램 스크린샷
YouTube Ad Mute 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
YouTubeの広告の音量を自動的にミュートにします.配信などでYouTubeを安心して利用するための選択肢の一つになればと思います. Automatically mutes the volume of YouTube ads. One of the options for distributors. 他の拡張機能などを用いてYouTubeのカラースキームを変更すると正しく動作しないことがあります. If you change the color scheme of YouTube using other extensions, this extension may not work properly. Release notes --- v2.0.0 --- Adopted a new logic!!! Thanks to user's review, I was able to notice the bug. If you have any requests, please review it! --- v1.0.3 --- Improved stability --- v1.0.2 --- Fixed a bug that mute is canceled without permission. --- v1.0.1 --- Support chages in video quelity. Remove some logs for developper. --- v1.0.0 --- Released.
확장 프로그램 기본 정보
이름 | |
ID | joeknkdeifkdnappekcfcejdmoickdfl |
공식 URL | https://chrome.google.com/webstore/detail/youtube-ad-mute/joeknkdeifkdnappekcfcejdmoickdfl |
설명 | Automatically mutes the volume of YouTube ads. One of the options for distributors. |
파일 크기 | 64.36 KB |
설치 횟수 | 989 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2021-08-22 |
출시 날짜 | 2020-10-12 |
평점 | 4.65/5 총 20 개의 평점 |
개발자 | bgdaewalkman |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ttak0422/utamita |
지원되는 언어 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Ad Mute", "description": "Automatically mutes the volume of YouTube ads. One of the options for distributors.", "version": "2.0.0", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "eventpage.js" ], "persistent": false }, "page_action": { "default_icon": { "19": "icon19.png" }, "default_title": "YouTubeAdVolumeController" }, "permissions": [ "tabs", "https:\/\/www.youtube.com\/*", "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |