Download All Downloads

Allows you to download all downloads on the page you are currently on.

Was ist Download All Downloads?

Download All Downloads ist eine Chrome-Erweiterung, die von Wiley Rogs entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to download all downloads on the page you are currently on.".

Erweiterungsscreenshots

screenshot

Download All Downloads-Erweiterungs-CRX-Datei herunterladen

Laden Sie Download All Downloads-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

                        Allows you to download all downloads on the page you are currently on.                    

Grundlegende Informationen zur Erweiterung

Name Download All Downloads Download All Downloads
ID hainjkeoagfbofbpodkgchbogedlbcio
Offizielle URL https://chromewebstore.google.com/detail/download-all-downloads/hainjkeoagfbofbpodkgchbogedlbcio
Beschreibung Allows you to download all downloads on the page you are currently on.
Dateigröße 8.07 KB
Installationsanzahl 22
Aktuelle Version 1.0
Letztes Update 2019-05-19
Veröffentlichungsdatum 2019-05-15
Entwickler Wiley Rogs
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Download All Downloads",
    "version": "1.0",
    "description": "Allows you to download all downloads on the page you are currently on.",
    "manifest_version": 2,
    "permissions": [
        "downloads",
        "activeTab"
    ],
    "content_security_policy": "script-src 'self'; default-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "images\/image16.png",
        "48": "images\/image48.png"
    }
}