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文件
下载MP3 Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
}
} | |