DatAnswers Chrome Local File Opener

Open files on your local area network using Chrome

DatAnswers Chrome Local File Opener란 무엇입니까?

DatAnswers Chrome Local File Opener은(는) varonis.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open files on your local area network using Chrome"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

DatAnswers Chrome Local File Opener 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 DatAnswers Chrome Local File Opener DatAnswers Chrome Local File Opener
ID dehljiokopflpeffddpbklhfohffnchh
공식 URL https://chromewebstore.google.com/detail/datanswers-chrome-local-f/dehljiokopflpeffddpbklhfohffnchh
설명 Open files on your local area network using Chrome
파일 크기 71.54 KB
설치 횟수 3,703
현재 버전 1.70
최근 업데이트 2023-12-14
출시 날짜 2020-03-18
평점 3.25/5 총 16 개의 평점
개발자 varonis.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.varonis.com
지원되는 언어 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:\/\/*\/*"
            ]
        }
    ]
}