Soundcloud Download
This extension will let you download any track from Soundcloud.
Qu'est-ce que Soundcloud Download ?
Soundcloud Download est une extension Chrome développée par Tenpi, et sa fonction principale est "This extension will let you download any track from Soundcloud.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Soundcloud Download
Téléchargez les fichiers d'extension Soundcloud Download au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | alonjekfomgihkmbejlpnohliidafdep |
URL Officiel | https://chrome.google.com/webstore/detail/soundcloud-download/alonjekfomgihkmbejlpnohliidafdep |
Description | This extension will let you download any track from Soundcloud. |
Taille du Fichier | 1.15 MB |
Nombre d'Installations | 50,000 |
Version Actuelle | 0.3.6 |
Dernière Mise à Jour | 2022-05-01 |
Date de Publication | 2020-11-28 |
Évaluation | 4.59/5 Total 70 Évaluations |
Développeur | Tenpi |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/Tenpi/soundcloud-extension |
Langues Prises en Charge | 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\/*" ] } |