Download Extension Admin Block

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

Was ist Download Extension Admin Block?

Download Extension Admin Block ist eine Chrome-Erweiterung, die von Giaer entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension that allows administrators to stop downloading files that have certain extensions.".

Erweiterungsscreenshots

screenshot

Download Extension Admin Block-Erweiterungs-CRX-Datei herunterladen

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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Download Extension Admin Block Download Extension Admin Block
ID fclpdmhgmmdocfbbomojkpngpffjhnjl
Offizielle URL https://chromewebstore.google.com/detail/download-extension-admin/fclpdmhgmmdocfbbomojkpngpffjhnjl
Beschreibung A simple extension that allows administrators to stop downloading files that have certain extensions.
Dateigröße 7.34 KB
Installationsanzahl 108
Aktuelle Version 2.6
Letztes Update 2019-10-31
Veröffentlichungsdatum 2019-10-31
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Giaer
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}