Download Extension Admin Block

A simple extension that allows administrators to stop downloading files that have certain extensions.

Cos'è Download Extension Admin Block?

Download Extension Admin Block è un'estensione di Chrome sviluppata da Giaer, e la sua funzione principale è "A simple extension that allows administrators to stop downloading files that have certain extensions.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Download Extension Admin Block

Scarica i file di estensione Download Extension Admin Block 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

                        A simple extension that allows administrators to stop downloading files that have certain extensions.
The extensions to be blocked are retrieved from the registry key:
[Computer\HKEY_CURRENT_USER\Software\Policies\Google\Chrome\3rdparty\Extensions\fclpdmhgmmdocfbbomojkpngpffjhnjl\policy]
 "BLOCKED_EXT"="exe,msi,ecc" // comma is the separation character
It is obviously possible to distribute the registry key via Group Policy.
To make this extension mandatory, distribute the chrome admx policy templates.                    

Informazioni di Base sull'Estensione

Nome Download Extension Admin Block Download Extension Admin Block
ID fclpdmhgmmdocfbbomojkpngpffjhnjl
URL Ufficiale https://chromewebstore.google.com/detail/download-extension-admin/fclpdmhgmmdocfbbomojkpngpffjhnjl
Descrizione A simple extension that allows administrators to stop downloading files that have certain extensions.
Dimensione del File 7.34 KB
Conteggio Installazioni 108
Versione Corrente 2.6
Ultimo Aggiornamento 2019-10-31
Data di Pubblicazione 2019-10-31
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Giaer
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Download Extension Admin Block",
    "description": "A simple extension that allows administrators to stop downloading files that have certain extensions.",
    "version": "2.6",
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": true
    },
    "permissions": [
        "downloads",
        "storage"
    ],
    "manifest_version": 2,
    "storage": {
        "managed_schema": "schema.json"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}