Download Extension Admin Block
A simple extension that allows administrators to stop downloading files that have certain extensions.
Co to jest Download Extension Admin Block?
Download Extension Admin Block to rozszerzenie Chrome opracowane przez Giaer, a jego główną funkcją jest „A simple extension that allows administrators to stop downloading files that have certain extensions.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Download Extension Admin Block
Pobierz pliki rozszerzeń Download Extension Admin Block w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Download Extension Admin Block |
ID | fclpdmhgmmdocfbbomojkpngpffjhnjl |
Oficjalny URL | https://chromewebstore.google.com/detail/download-extension-admin/fclpdmhgmmdocfbbomojkpngpffjhnjl |
Opis | A simple extension that allows administrators to stop downloading files that have certain extensions. |
Rozmiar pliku | 7.34 KB |
Liczba instalacji | 108 |
Aktualna Wersja | 2.6 |
Ostatnia Aktualizacja | 2019-10-31 |
Data Publikacji | 2019-10-31 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Giaer |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |