File Downloader

Quickly get the downloads and nothing else.

Was ist File Downloader?

File Downloader ist eine Chrome-Erweiterung, die von MSI Developers entwickelt wurde, und ihr Hauptmerkmal ist "Quickly get the downloads and nothing else.".

Erweiterungsscreenshots

screenshot
screenshot

File Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie File Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name File Downloader File Downloader
ID emjdbjldmicjajakcmmkbhlhlkaljcpn
Offizielle URL https://chromewebstore.google.com/detail/file-downloader/emjdbjldmicjajakcmmkbhlhlkaljcpn
Beschreibung Quickly get the downloads and nothing else.
Dateigröße 33.12 KB
Installationsanzahl 1,875
Aktuelle Version 1.6
Letztes Update 2022-10-13
Veröffentlichungsdatum 2022-08-20
Bewertung 4.20/5 Insgesamt 5 Bewertungen
Entwickler MSI Developers
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://studiocdn.com/privacy-terms-of-use
Unterstützte Sprachen 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:\/\/*\/*"
            ]
        }
    ]
}