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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension that allows administrators to stop downloading files that have certain extensions."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Download Extension Admin Block एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |