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是由Giaer开发的Chrome扩展程序,该扩展的主要功能是“A simple extension that allows administrators to stop downloading files that have certain extensions.”。
扩展截图
下载Download Extension Admin Block扩展crx文件
下载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 |
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" } } |