Download Extension Admin Block
A simple extension that allows administrators to stop downloading files that have certain extensions.
What is Download Extension Admin Block?
Download Extension Admin Block is a Chrome extension developed by Giaer, and its main feature is "A simple extension that allows administrators to stop downloading files that have certain extensions.".
Extension Screenshots
Download Download Extension Admin Block Extension CRX File
Download Download Extension Admin Block extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Download Extension Admin Block |
ID | fclpdmhgmmdocfbbomojkpngpffjhnjl |
Official URL | https://chromewebstore.google.com/detail/download-extension-admin/fclpdmhgmmdocfbbomojkpngpffjhnjl |
Description | A simple extension that allows administrators to stop downloading files that have certain extensions. |
File Size | 7.34 KB |
Installation Count | 108 |
Current Version | 2.6 |
Last Updated | 2019-10-31 |
Publish Date | 2019-10-31 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Giaer |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |