Download Extension Admin Block

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

Что такое Download Extension Admin Block?

Download Extension Admin Block - это расширение Chrome, разработанное Giaer, и его основная функция - "A simple extension that allows administrators to stop downloading files that have certain extensions.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Download Extension Admin Block

Скачайте файлы расширений Download Extension Admin Block в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Download Extension Admin Block Download Extension Admin Block
ID fclpdmhgmmdocfbbomojkpngpffjhnjl
Официальный URL https://chromewebstore.google.com/detail/download-extension-admin/fclpdmhgmmdocfbbomojkpngpffjhnjl
Описание A simple extension that allows administrators to stop downloading files that have certain extensions.
Размер файла 7.34 KB
Количество установок 108
Текущая Версия 2.6
Последнее Обновление 2019-10-31
Дата публикации 2019-10-31
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Giaer
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}