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.」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
    }
}