Soundcloud Download
This extension will let you download any track from Soundcloud.
Soundcloud Downloadとは何ですか?
Soundcloud DownloadはTenpiによって開発されたChromeの拡張機能で、その主な機能は「This extension will let you download any track from Soundcloud.」です。
拡張機能のスクリーンショット
Soundcloud Download拡張機能のCRXファイルをダウンロード
Soundcloud Download拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | |
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 |
Eメール | [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\/*" ] } |