Soundcloud Download

This extension will let you download any track from Soundcloud.

Soundcloud Download là gì?

Soundcloud Download là một tiện ích mở rộng Chrome được phát triển bởi Tenpi, và tính năng chính của nó là "This extension will let you download any track from Soundcloud.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Soundcloud Download

Tải xuống các tệp mở rộng Soundcloud Download dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Soundcloud Download Soundcloud Download
ID alonjekfomgihkmbejlpnohliidafdep
URL Chính Thức https://chrome.google.com/webstore/detail/soundcloud-download/alonjekfomgihkmbejlpnohliidafdep
Mô tả This extension will let you download any track from Soundcloud.
Kích Thước Tệp 1.15 MB
Số Lần Cài Đặt 50,000
Phiên Bản Hiện Tại 0.3.6
Cập Nhật Lần Cuối 2022-05-01
Ngày Phát Hành 2020-11-28
Đánh Giá 4.59/5 Tổng số 70 Đánh Giá
Nhà Phát Triển Tenpi
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/Tenpi/soundcloud-extension
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}