Soundcloud Download

This extension will let you download any track from Soundcloud.

Soundcloud Download क्या है?

Soundcloud Download Tenpi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will let you download any track from Soundcloud."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Soundcloud Download एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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\/*"
    ]
}