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 هو إضافة Chrome تم تطويرها بواسطة Giaer، والميزة الرئيسية لها هي "A simple extension that allows administrators to stop downloading files that have certain extensions.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Download Extension Admin Block

قم بتنزيل ملفات الامتداد Download Extension Admin Block بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [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"
    }
}