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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | |
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\/*" ] } |