Download Extension Admin Block

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

Qu'est-ce que Download Extension Admin Block ?

Download Extension Admin Block est une extension Chrome développée par Giaer, et sa fonction principale est "A simple extension that allows administrators to stop downloading files that have certain extensions.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Download Extension Admin Block

Téléchargez les fichiers d'extension Download Extension Admin Block au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Download Extension Admin Block Download Extension Admin Block
ID fclpdmhgmmdocfbbomojkpngpffjhnjl
URL Officiel https://chromewebstore.google.com/detail/download-extension-admin/fclpdmhgmmdocfbbomojkpngpffjhnjl
Description A simple extension that allows administrators to stop downloading files that have certain extensions.
Taille du Fichier 7.34 KB
Nombre d'Installations 108
Version Actuelle 2.6
Dernière Mise à Jour 2019-10-31
Date de Publication 2019-10-31
Évaluation 5.00/5 Total 2 Évaluations
Développeur Giaer
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}