Soundcloud Download

This extension will let you download any track from Soundcloud.

什麼是Soundcloud Download?

Soundcloud Download是由Tenpi開發的Chrome擴展程式,該擴展的主要功能是“This extension will let you download any track from Soundcloud.”。

擴展截圖

screenshot

下載Soundcloud Download擴展crx文件

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

擴展使用說明

                        This is a simple extension that adds a download button to Soundcloud pages.

Features:
-Download individual tracks (track page)
-Download all of a user's tracks (user page)
-Download all tracks in a playlist (playlist page)
-Download tracks/playlists on the search page
-Download the song cover art images
-Adds metadata such as song title and cover art

Sometimes you may need to refresh the page in order for the button to show up.

Bugs/Feature Requests:
You can open an issue on my GitHub repository here:
https://github.com/Tenpi/soundcloud-download                    

擴展基本資訊

名稱 Soundcloud Download Soundcloud Download
ID alonjekfomgihkmbejlpnohliidafdep
官方網址 https://chrome.google.com/webstore/detail/soundcloud-download/alonjekfomgihkmbejlpnohliidafdep
簡介 This extension will let you download any track from Soundcloud.
檔案大小 1.15 MB
安裝次數 50,000
目前版本 0.3.6
更新時間 2022-05-01
上架時間 2020-11-28
評分 4.59/5 共 70 次評分
開發者 Tenpi
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/Tenpi/soundcloud-extension
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Soundcloud Download",
    "description": "This extension will let you download any track from Soundcloud.",
    "version": "0.3.6",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.soundcloud.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "browser-id3-writer.js",
            "crunker.js",
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "permissions": [
        "https:\/\/*.soundcloud.com\/*",
        "tabs",
        "webRequest",
        "downloads",
        "webNavigation",
        "storage"
    ],
    "web_accessible_resources": [
        "assets\/*"
    ]
}