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 |
官方網址 | 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" } } |