Auto Ad Mute
This mutes youtube ad audio.
Auto Ad Mute란 무엇입니까?
Auto Ad Mute은(는) jasoberai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This mutes youtube ad audio."입니다.
확장 프로그램 스크린샷
Auto Ad Mute 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Code is available here as open source: [https://github.com/jasmeeto/auto-ad-mute] An extension that automatically mutes tabs while ad audio from YouTube is playing for those who want to support their favorite content creators without the noise. Relatively intuitive, the addon is enabled by default. Features: - Mutes ads - Can skip ads that are skippable (i.e. ones that show the 'Skip Ad' button) (Disabled by default) - Hides ad banners that appear in middle of videos by just moving them off screen
확장 프로그램 기본 정보
이름 | Auto Ad Mute |
ID | hljoencdappihmlkilchbhcjoldimkbn |
공식 URL | https://chromewebstore.google.com/detail/auto-ad-mute/hljoencdappihmlkilchbhcjoldimkbn |
설명 | This mutes youtube ad audio. |
파일 크기 | 39.86 KB |
설치 횟수 | 1,570 |
현재 버전 | 1.8 |
최근 업데이트 | 2017-10-29 |
출시 날짜 | 2017-10-29 |
평점 | 3.07/5 총 45 개의 평점 |
개발자 | jasoberai |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/jasmeeto/auto-ad-mute |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Ad Mute", "description": "This mutes youtube ad audio.", "version": "1.8", "icons": { "48": "icon_mute.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "libs\/jquery-3.1.0.min.js", "libs\/arrive.min.js", "contentScript.js" ], "all_frames": true, "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Auto Mute Options" }, "background": { "scripts": [ "backgroundScript.js" ] }, "permissions": [ "tabs", "*:\/\/www.youtube.com\/*", "webNavigation", "storage" ] } |