SoundCloud Downloader v2

Adds download buttons for tracks on soundcloud.com

SoundCloud Downloader v2란 무엇입니까?

SoundCloud Downloader v2은(는) alina.merkelsz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds download buttons for tracks on soundcloud.com"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

SoundCloud Downloader v2 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Add-on allows you to easily download tracks off of SoundCloud, by the press of a button. Unlike other Add-ons, this does not use any 3rd party services to perform the download - only SoundCloud's own APIs.
When you hit 'Download', we will set the appropriate metadata information: Title, Artists, Album and Artwork. If the track is downloaded as part of an album, we will also set the track number.
If you are a Go+ user, we will download the higher quality version (.m4a file) for you.                    

확장 프로그램 기본 정보

이름 SoundCloud Downloader v2 SoundCloud Downloader v2
ID fbknbpgcakhanbhcogebgfbapkgcdloh
공식 URL https://chrome.google.com/webstore/detail/soundcloud-downloader-v2/fbknbpgcakhanbhcogebgfbapkgcdloh
설명 Adds download buttons for tracks on soundcloud.com
파일 크기 62.94 KB
설치 횟수 20,000
현재 버전 2022.06.12
최근 업데이트 2022-06-13
출시 날짜 2021-01-21
평점 4.48/5 총 65 개의 평점
개발자 alina.merkelsz
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "author": "NotTobi",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "js": [
                "install.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Adds download buttons for tracks on soundcloud.com",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png"
    },
    "manifest_version": 2,
    "name": "SoundCloud Downloader v2",
    "options_ui": {
        "page": "settings.html"
    },
    "page_action": {
        "default_icon": {
            "128": "icons\/icon-128.png",
            "48": "icons\/icon-48.png",
            "64": "icons\/icon-64.png",
            "96": "icons\/icon-96.png"
        },
        "default_title": "Soundcloud Downloader",
        "show_matches": [
            "*:\/\/*.soundcloud.com\/*"
        ]
    },
    "permissions": [
        "downloads",
        "webRequest",
        "storage",
        "webRequestBlocking",
        "*:\/\/*.soundcloud.com\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2022.06.12",
    "web_accessible_resources": [
        "js\/repostBlocker.js"
    ]
}