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文件

下载File Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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:\/\/*\/*"
            ]
        }
    ]
}