DatAnswers Chrome Local File Opener

Open files on your local area network using Chrome

DatAnswers Chrome Local File Opener là gì?

DatAnswers Chrome Local File Opener là một tiện ích mở rộng Chrome được phát triển bởi varonis.com, và tính năng chính của nó là "Open files on your local area network using Chrome".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DatAnswers Chrome Local File Opener

Tải xuống các tệp mở rộng DatAnswers Chrome Local File Opener 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

                        DatAnswers is an enterprise search engine that enables users to search the organization's Varonis-monitored file systems for the data they need, providing information governance for administrators, and compliance and legal officers. DatAnswers leverages the power and security of the Varonis classification engine to index a company's data and provide relevant search results.
The results displayed in the application contain UNC links to the files that match the search criteria. Chrome’s default behavior prevents users from opening files in UNC format (that is, file://FileServer/share/filename). 
This extension enables authorized DatAnswers users to open files and folders in UNC format through the DatAnswers search engine. When a link is clicked, the extension verifies whether that link is valid and generated by DatAnswers and then opens it in a new browser tab.                    

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

Tên DatAnswers Chrome Local File Opener DatAnswers Chrome Local File Opener
ID dehljiokopflpeffddpbklhfohffnchh
URL Chính Thức https://chromewebstore.google.com/detail/datanswers-chrome-local-f/dehljiokopflpeffddpbklhfohffnchh
Mô tả Open files on your local area network using Chrome
Kích Thước Tệp 71.54 KB
Số Lần Cài Đặt 3,703
Phiên Bản Hiện Tại 1.70
Cập Nhật Lần Cuối 2023-12-14
Ngày Phát Hành 2020-03-18
Đánh Giá 3.25/5 Tổng số 16 Đánh Giá
Nhà Phát Triển varonis.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.varonis.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "manifest_version": 3,
    "name": "DatAnswers Chrome Local File Opener",
    "author": "Varonis",
    "short_name": "DatAnswers Chrome Local File Opener",
    "version": "1.70",
    "description": "Open files on your local area network using Chrome",
    "icons": {
        "16": "App_icon_16.png",
        "48": "App_icon_48.png",
        "128": "App_icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery-1.4.2.min.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "web_accessible_resources": [
        {
            "resources": [
                "extension.html",
                "App_icon*.png"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}