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文件

下載SoundCloud Downloader v2擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}