SpotiAds
Removes audio ads on Spotify™ Web Player
SpotiAds란 무엇입니까?
SpotiAds은(는) Tomer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes audio ads on Spotify™ Web Player"입니다.
확장 프로그램 스크린샷
SpotiAds 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension will block annoying audio ads from playing on Spotify™. Using it, ads will not play on Spotify™ online web player, and instead the next song will play. Note that this will not affect your smartphone, etc. Sources are available here: https://github.com/tomer8007/spotify-web-ads-remover ———————————————————— LEGAL ———————————————————— This extension is against Spotify's Terms of Service. Spotify is a trademark of Spotify Technology S.A., registered in the U.S. and other countries. This extension is an independent project developed by Tomer H. and has no relationship to Spotify or Spotify Technology S.A.
확장 프로그램 기본 정보
이름 | SpotiAds |
ID | mghhlojofjipigjobacbjdngmjafdeim |
공식 URL | https://chromewebstore.google.com/detail/spotiads/mghhlojofjipigjobacbjdngmjafdeim |
설명 | Removes audio ads on Spotify™ Web Player |
파일 크기 | 112 KB |
설치 횟수 | 175,753 |
현재 버전 | 1.1.4 |
최근 업데이트 | 2024-03-01 |
출시 날짜 | 2020-11-15 |
평점 | 4.21/5 총 467 개의 평점 |
개발자 | Tomer |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://github.com/tomer8007/whatsapp-web-incognito/wiki/Chrome-Extension-Privacy-Policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SpotiAds", "short_name": "SpotiAdBlocker", "description": "Removes audio ads on Spotify\u2122 Web Player", "version": "1.1.4", "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/open.spotify.com\/*" ], "icons": { "128": "images\/icon_2_128.png" }, "browser_action": { "default_icon": "images\/icon_2_128.png", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "lib\/sweetalert.min.js" ], "css": [ "styles.css" ] } ], "web_accessible_resources": [ "injected\/*", "lib\/*" ] } |