Soundcloud Download

This extension will let you download any track from Soundcloud.

O que é Soundcloud Download?

Soundcloud Download é uma extensão do Chrome desenvolvida por Tenpi, e sua principal característica é "This extension will let you download any track from Soundcloud.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Soundcloud Download

Baixe arquivos de extensão Soundcloud Download no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Soundcloud Download Soundcloud Download
ID alonjekfomgihkmbejlpnohliidafdep
URL Oficial https://chrome.google.com/webstore/detail/soundcloud-download/alonjekfomgihkmbejlpnohliidafdep
Descrição This extension will let you download any track from Soundcloud.
Tamanho do Arquivo 1.15 MB
Contagem de Instalações 50,000
Versão Atual 0.3.6
Última Atualização 2022-05-01
Data de Publicação 2020-11-28
Classificação 4.59/5 Total de 70 Avaliações
Desenvolvedor Tenpi
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/Tenpi/soundcloud-extension
Idiomas Suportados 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\/*"
    ]
}