MP3 Downloader

MP3 Downloader app downloads mp3 music from websites.

Co to jest MP3 Downloader?

MP3 Downloader to rozszerzenie Chrome opracowane przez Mp3 Downloader, a jego główną funkcją jest „MP3 Downloader app downloads mp3 music from websites.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia MP3 Downloader

Pobierz pliki rozszerzeń MP3 Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        MP3 Downloader can download music tracks in mp3 format from most websites. 

Instructions:
1) Click to icon on the current page for display popup.  
2) In the popup is showing mp3 files from current page. 
3) Click to downloading one song or download all files. 
4) You can playing mp3 in popup.

Notice:
1) MP3 Downloader is not responsible for media content which you download. We recommended to check media copyright permissions.
2) Download of Youtube m3p to HDD is is intentionally locked.                    

Podstawowe informacje o rozszerzeniu

Nazwa MP3 Downloader MP3 Downloader
ID ijpbngfhhjnhdpnnbffmneljldlkolpa
Oficjalny URL https://chrome.google.com/webstore/detail/mp3-downloader/ijpbngfhhjnhdpnnbffmneljldlkolpa
Opis MP3 Downloader app downloads mp3 music from websites.
Rozmiar pliku 112 KB
Liczba instalacji 48,385
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2023-06-13
Data Publikacji 2020-04-12
Ocena 2.48/5 Łącznie 31 Oceny
Deweloper Mp3 Downloader
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.0.0",
    "name": "MP3 Downloader",
    "description": "MP3 Downloader app downloads mp3 music from websites.",
    "background": {
        "service_worker": "background.js"
    },
    "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"
    },
    "manifest_version": 3,
    "permissions": [
        "downloads",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "injected_content.js"
            ]
        }
    ]
}