File Downloader

Quickly get the downloads and nothing else.

File Downloader क्या है?

File Downloader MSI Developers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly get the downloads and nothing else."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में File Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*"
            ]
        }
    ]
}