SoundFilter
Remove reposts from soundcloud feed.
SoundFilter란 무엇입니까?
SoundFilter은(는) import antigrvty에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove reposts from soundcloud feed."입니다.
확장 프로그램 스크린샷
SoundFilter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Sometimes there are just too many damn reposts and you don't want to see them. Just turn on soundfilter and they'll be removed for you. Click the icon up in the top right of the browser to toggle soundfilter on and off. That's pretty much it. Future Enhancements - Find a way to actually alter requests so that reposts are never requested in the first place... As it stands, the extension is just removing reposts as they come in, so they are still being downloaded - which makes it much slower than it could be but I'm just not sure how to filter out reposts from the beginning. -Skip reposts in autoplay. Soundcloud makes your autoplay playlist behind the scenes, so even though they are being deleted from the page, they will still be played in autoplay.
확장 프로그램 기본 정보
이름 | SoundFilter |
ID | opmifoiilcpcapcklajjdkobiilloknp |
공식 URL | https://chromewebstore.google.com/detail/soundfilter/opmifoiilcpcapcklajjdkobiilloknp |
설명 | Remove reposts from soundcloud feed. |
파일 크기 | 1.39 MB |
설치 횟수 | 226 |
현재 버전 | 1.5 |
최근 업데이트 | 2020-01-04 |
출시 날짜 | 2020-01-04 |
평점 | 3.60/5 총 5 개의 평점 |
개발자 | import antigrvty |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SoundFilter", "description": "Remove reposts from soundcloud feed.", "version": "1.5", "manifest_version": 2, "permissions": [ "activeTab", "*:\/\/*.soundcloud.com\/*", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "SoundFilter", "default_icon": "icon_16.png" }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.soundcloud.com\/*" ], "js": [ "removeReposts.js" ] } ] } |