Soundcloud Cleaner

Randomly removes some reposts from the soundcloud feed.

Soundcloud Cleaner란 무엇입니까?

Soundcloud Cleaner은(는) imagiro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Randomly removes some reposts from the soundcloud feed."입니다.

확장 프로그램 스크린샷

screenshot

Soundcloud Cleaner 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Make your soundcloud feed usable again with this free extension.

Choose the amount of reposts to remove from the feed - on each refresh the addon will remove a certain number of reposts based on your preference.                    

확장 프로그램 기본 정보

이름 Soundcloud Cleaner Soundcloud Cleaner
ID jcmnggoigialkomambfiijlafocekbeo
공식 URL https://chromewebstore.google.com/detail/soundcloud-cleaner/jcmnggoigialkomambfiijlafocekbeo
설명 Randomly removes some reposts from the soundcloud feed.
파일 크기 38.08 KB
설치 횟수 110
현재 버전 1.21
최근 업데이트 2019-05-05
출시 날짜 2019-05-05
평점 4.00/5 총 7 개의 평점
개발자 imagiro
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Soundcloud Cleaner",
    "version": "1.21",
    "description": "Randomly removes some reposts from the soundcloud feed.",
    "icons": {
        "48": "iconOn.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/soundcloud.com\/*"
            ],
            "js": [
                "jquery.js",
                "script.js"
            ],
            "run_at": "document_start"
        }
    ]
}