MP3 Downloader
MP3 Downloader app downloads mp3 music from websites.
MP3 Downloader란 무엇입니까?
MP3 Downloader은(는) MP3 Tools에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "MP3 Downloader app downloads mp3 music from websites."입니다.
확장 프로그램 스크린샷
MP3 Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
MP3 Downloader can download music tracks in mp3 format from most websites. Instructions: - Click to icon on the current page for display popup. - In the popup is showing mp3 files from current page. - Click to downloading one song or download all files. - You can playing mp3 in popup. Notice: MP3 Downloader is not responsible for media content which you download. We recommended to check media copyright permissions. Download of Youtube m3p to HDD is is intentionally locked.
확장 프로그램 기본 정보
이름 | MP3 Downloader |
ID | dklpoegflpcjifjkecojebbpahjmakgp |
공식 URL | https://chromewebstore.google.com/detail/mp3-downloader/dklpoegflpcjifjkecojebbpahjmakgp |
설명 | MP3 Downloader app downloads mp3 music from websites. |
파일 크기 | 110 KB |
설치 횟수 | 1,000 |
현재 버전 | 1.0 |
최근 업데이트 | 2023-10-02 |
출시 날짜 | 2023-10-01 |
평점 | 4.50/5 총 2 개의 평점 |
개발자 | MP3 Tools |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.0", "name": "MP3 Downloader", "description": "MP3 Downloader app downloads mp3 music from websites.", "permissions": [ "downloads", "tabs" ], "action": { "default_icon": "img\/ico_19.png", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "jquery.js", "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "icons": { "16": "img\/ico_16.png", "19": "img\/ico_19.png", "48": "img\/ico_48.png", "128": "img\/ico_128.png" } } |