Soundcloud Download
This extension will let you download any track from Soundcloud.
Cos'è Soundcloud Download?
Soundcloud Download è un'estensione di Chrome sviluppata da Tenpi, e la sua funzione principale è "This extension will let you download any track from Soundcloud.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Soundcloud Download
Scarica i file di estensione Soundcloud Download in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | alonjekfomgihkmbejlpnohliidafdep |
URL Ufficiale | https://chrome.google.com/webstore/detail/soundcloud-download/alonjekfomgihkmbejlpnohliidafdep |
Descrizione | This extension will let you download any track from Soundcloud. |
Dimensione del File | 1.15 MB |
Conteggio Installazioni | 50,000 |
Versione Corrente | 0.3.6 |
Ultimo Aggiornamento | 2022-05-01 |
Data di Pubblicazione | 2020-11-28 |
Valutazione | 4.59/5 Totale 70 Valutazioni |
Sviluppatore | Tenpi |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/Tenpi/soundcloud-extension |
Lingue Supportate | 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\/*" ] } |