File Downloader

Quickly get the downloads and nothing else.

File Downloader란 무엇입니까?

File Downloader은(는) MSI Developers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly get the downloads and nothing else."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Download multiple files using extension. 

This extension is integrated with landing.studiocdn.com but can be used publicly by other developers to integrate with their application where it is required to detect if extension is installed by end user already, otherwise request them to download. 

 *** Changes
- event to communicate between extension and webpage
- exposed some new events for communication
- icon changed
- events bug fixes
- one time event fire when extension is installed                    

확장 프로그램 기본 정보

이름 File Downloader File Downloader
ID emjdbjldmicjajakcmmkbhlhlkaljcpn
공식 URL https://chromewebstore.google.com/detail/file-downloader/emjdbjldmicjajakcmmkbhlhlkaljcpn
설명 Quickly get the downloads and nothing else.
파일 크기 33.12 KB
설치 횟수 1,875
현재 버전 1.6
최근 업데이트 2022-10-13
출시 날짜 2022-08-20
평점 4.20/5 총 5 개의 평점
개발자 MSI Developers
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://studiocdn.com/privacy-terms-of-use
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "File Downloader",
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Alt+Shift+D",
                "windows": "Alt+Shift+D",
                "mac": "Alt+Shift+D"
            }
        }
    },
    "short_name": "Multifile DL",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "description": "Quickly get the downloads and nothing else.",
    "version": "1.6",
    "host_permissions": [
        ""
    ],
    "permissions": [
        "downloads",
        "storage"
    ],
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "19": "images\/icon_19.png",
            "38": "images\/icon_38.png"
        },
        "default_title": "Multiple File Downloader"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        {
            "resources": [
                "main-style.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}