File Downloader

This Chrome browser extension is designed to make managing your downloads easier and more convenient. Featuring a beautiful…

File Downloader란 무엇입니까?

File Downloader은(는) hy6.dmitry.gorbatikov.vt1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This Chrome browser extension is designed to make managing your downloads easier and more convenient. Featuring a beautiful…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

File Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This Chrome browser extension is designed to make managing your downloads easier and more convenient. Featuring a beautiful Material Design and intuitive sorting functionality, it allows you to quickly and easily access all your downloads in one place.

With a handy quick access button conveniently located on every page, you can quickly open the pop-up extension without wasting any extra time. And if you don't need it, you can easily enable or disable this feature in the extension window.

Whether you frequently work with downloads or just want to diversify the standard downloader for Chrome, our extension is a great choice. It offers a unique and pleasant experience that is both functional and visually appealing.

So why not give it a try? Download our extension today and start enjoying a more efficient and convenient way to manage your downloads in Chrome.                    

확장 프로그램 기본 정보

이름 File Downloader File Downloader
ID fjbdpilgfapefeccpaihlfibblgbhdce
공식 URL https://chromewebstore.google.com/detail/file-downloader/fjbdpilgfapefeccpaihlfibblgbhdce
설명 This Chrome browser extension is designed to make managing your downloads easier and more convenient. Featuring a beautiful…
파일 크기 589 KB
설치 횟수 84
현재 버전 1.0
최근 업데이트 2023-04-13
출시 날짜 2023-04-13
평점 5.00/5 총 2 개의 평점
개발자 hy6.dmitry.gorbatikov.vt1
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "File Downloader",
    "version": "1.0",
    "manifest_version": 3,
    "offline_enabled": true,
    "action": {
        "default_title": "File Downloader",
        "default_popup": "index.html"
    },
    "permissions": [
        "downloads",
        "downloads.open",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    }
}