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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
อีเมล [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"
    }
}