Download Extension Admin Block

A simple extension that allows administrators to stop downloading files that have certain extensions.

Download Extension Admin Block là gì?

Download Extension Admin Block là một tiện ích mở rộng Chrome được phát triển bởi Giaer, và tính năng chính của nó là "A simple extension that allows administrators to stop downloading files that have certain extensions.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Download Extension Admin Block

Tải xuống các tệp mở rộng Download Extension Admin Block dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Download Extension Admin Block Download Extension Admin Block
ID fclpdmhgmmdocfbbomojkpngpffjhnjl
URL Chính Thức https://chromewebstore.google.com/detail/download-extension-admin/fclpdmhgmmdocfbbomojkpngpffjhnjl
Mô tả A simple extension that allows administrators to stop downloading files that have certain extensions.
Kích Thước Tệp 7.34 KB
Số Lần Cài Đặt 108
Phiên Bản Hiện Tại 2.6
Cập Nhật Lần Cuối 2019-10-31
Ngày Phát Hành 2019-10-31
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Giaer
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}