Download Extension Admin Block

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

Wat is Download Extension Admin Block?

Download Extension Admin Block is een Chrome-extensie ontwikkeld door Giaer, en de belangrijkste functie is "A simple extension that allows administrators to stop downloading files that have certain extensions.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Download Extension Admin Block

Download Download Extension Admin Block-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

                        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.                    

Basisinformatie over de Extensie

Naam Download Extension Admin Block Download Extension Admin Block
ID fclpdmhgmmdocfbbomojkpngpffjhnjl
Officiële URL https://chromewebstore.google.com/detail/download-extension-admin/fclpdmhgmmdocfbbomojkpngpffjhnjl
Beschrijving A simple extension that allows administrators to stop downloading files that have certain extensions.
Bestandsgrootte 7.34 KB
Aantal Installaties 108
Huidige Versie 2.6
Laatst Bijgewerkt 2019-10-31
Publicatiedatum 2019-10-31
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Giaer
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}