Spotifree
Removes audio ads on Spot1fy Web Player
Spotifree란 무엇입니까?
Spotifree은(는) robertward2933에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes audio ads on Spot1fy Web Player"입니다.
확장 프로그램 스크린샷
Spotifree 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Via spotifree, you can have a completely ad-free version of spotify. It is completely open source and free. Features: -No need to pay for a premium account as ads are skipped without you taking action -You will not feel anything while listening to your music, the music will not be interrupted. -The time you spend listening to ads is up to you. -You save internet traffic because you don't listen to ads.
확장 프로그램 기본 정보
이름 | |
ID | lghglbigngooahpkaomlbiflhoahgnff |
공식 URL | https://chrome.google.com/webstore/detail/spotifree/lghglbigngooahpkaomlbiflhoahgnff |
설명 | Removes audio ads on Spot1fy Web Player |
파일 크기 | 49.97 KB |
설치 횟수 | 544 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2021-06-07 |
출시 날짜 | 2021-06-07 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | robertward2933 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spotifree", "short_name": "Spotifree ads blocker", "description": "Removes audio ads on Spot1fy Web Player", "version": "1.0.1", "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/open.spotify.com\/*" ], "icons": { "128": "images\/icon_128.png" }, "browser_action": { "default_icon": "images\/icon_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\/*" ] } |