Download Extension Admin Block
A simple extension that allows administrators to stop downloading files that have certain extensions.
Vad är Download Extension Admin Block?
Download Extension Admin Block är en Chrome-tillägg utvecklad av Giaer, och dess huvudfunktion är "A simple extension that allows administrators to stop downloading files that have certain extensions.".
Tilläggsskärmbilder
Ladda ner Download Extension Admin Block-förlängningens CRX-fil
Ladda ner Download Extension Admin Block-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Download Extension Admin Block |
ID | fclpdmhgmmdocfbbomojkpngpffjhnjl |
Officiell webbadress | https://chromewebstore.google.com/detail/download-extension-admin/fclpdmhgmmdocfbbomojkpngpffjhnjl |
Beskrivning | A simple extension that allows administrators to stop downloading files that have certain extensions. |
Filstorlek | 7.34 KB |
Antal Installationer | 108 |
Aktuell Version | 2.6 |
Senast Uppdaterad | 2019-10-31 |
Publiceringsdatum | 2019-10-31 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Giaer |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |