Download All Downloads

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

Cos'è Download All Downloads?

Download All Downloads è un'estensione di Chrome sviluppata da Wiley Rogs, e la sua funzione principale è "Allows you to download all downloads on the page you are currently on.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Download All Downloads

Scarica i file di estensione Download All Downloads in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Download All Downloads Download All Downloads
ID hainjkeoagfbofbpodkgchbogedlbcio
URL Ufficiale https://chromewebstore.google.com/detail/download-all-downloads/hainjkeoagfbofbpodkgchbogedlbcio
Descrizione Allows you to download all downloads on the page you are currently on.
Dimensione del File 8.07 KB
Conteggio Installazioni 22
Versione Corrente 1.0
Ultimo Aggiornamento 2019-05-19
Data di Pubblicazione 2019-05-15
Sviluppatore Wiley Rogs
Tipo di Pagamento free
Lingue Supportate 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"
    }
}