Spotify Ad Auto-Muter
Automatically mute audio ads.
Spotify Ad Auto-Muter란 무엇입니까?
Spotify Ad Auto-Muter은(는) Zion Developers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically mute audio ads."입니다.
확장 프로그램 스크린샷
Spotify Ad Auto-Muter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is NOT an Ad Blocker, It mute ads. Support Spotify by disabling AdBlock / uBlock on open.spotify.com and use this extension to automatically mute audio ads. Feature: Automatically mute audio ads (Changeable on Options). Feature: Disable / Enable the extension by pressing F2 (Changeable on Options). More features to be developed soon. This is not a Spotify official extension. Open Source: https://github.com/ziondevelopers/spotify-ad-auto-muter License: https://creativecommons.org/licenses/by-nc-sa/4.0/
확장 프로그램 기본 정보
이름 | Spotify Ad Auto-Muter |
ID | hhlhelmnhcmphakjipgkbcjkfpkdnaag |
공식 URL | https://chromewebstore.google.com/detail/spotify-ad-auto-muter/hhlhelmnhcmphakjipgkbcjkfpkdnaag |
설명 | Automatically mute audio ads. |
파일 크기 | 100 KB |
설치 횟수 | 579 |
현재 버전 | 0.1.10 |
최근 업데이트 | 2024-01-07 |
출시 날짜 | 2022-10-25 |
평점 | 3.67/5 총 6 개의 평점 |
개발자 | Zion Developers |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ziondevelopers/spotify-ad-auto-muter |
도움말 페이지 URL | https://github.com/ZionDevelopers/spotify-ad-auto-muter/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "exclude_globs": [], "include_globs": [ "*open.spotify.com*" ], "css": [], "js": [ "includes\/jquery-3.7.1.min.js", "includes\/spotify.js", "includes\/jquery.hotkeys.js" ], "matches": [ "*:\/\/open.spotify.com\/*" ], "run_at": "document_start" } ], "description": "Automatically mute audio ads.", "icons": { "128": "icons\/icon.png" }, "manifest_version": 3, "name": "Spotify Ad Auto-Muter", "short_name": "Spotify Ad Auto-Muter", "options_page": "options.html", "permissions": [ "storage" ], "version": "0.1.10", "web_accessible_resources": [ { "matches": [ "*:\/\/open.spotify.com\/*" ], "resources": [ "icons\/icon.png", "includes\/jquery-3.7.1.min.js", "includes\/spotify.js", "includes\/jquery-3.7.1.min.map", "includes\/jquery.hotkeys.js" ] } ] } |