File Downloader

Quickly get the downloads and nothing else.

Wat is File Downloader?

File Downloader is een Chrome-extensie ontwikkeld door MSI Developers, en de belangrijkste functie is "Quickly get the downloads and nothing else.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie File Downloader

Download File Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam File Downloader File Downloader
ID emjdbjldmicjajakcmmkbhlhlkaljcpn
Officiële URL https://chromewebstore.google.com/detail/file-downloader/emjdbjldmicjajakcmmkbhlhlkaljcpn
Beschrijving Quickly get the downloads and nothing else.
Bestandsgrootte 33.12 KB
Aantal Installaties 1,875
Huidige Versie 1.6
Laatst Bijgewerkt 2022-10-13
Publicatiedatum 2022-08-20
Beoordeling 4.20/5 Totaal 5 Beoordelingen
Ontwikkelaar MSI Developers
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://studiocdn.com/privacy-terms-of-use
Ondersteunde Talen 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:\/\/*\/*"
            ]
        }
    ]
}