Local Explorer - Open File Links in Chrome

Enable local file links to hard disk, Azure AD & company shared folders, mapped network drive directly in corporate/local host site.

Local Explorer - Open File Links in Chrome là gì?

Local Explorer - Open File Links in Chrome là một tiện ích mở rộng Chrome được phát triển bởi https://vnprodev.com, và tính năng chính của nó là "Enable local file links to hard disk, Azure AD & company shared folders, mapped network drive directly in corporate/local host site.".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Local Explorer - Open File Links in Chrome

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

                        Enable local file links in Chrome or Edge by using the Local Explorer browser extension. It lets you browse and open local file links directly in your web browser.

Local Explorer can enable local file links and open them in associated application when clicked. For examples, click a folder link to open Windows Explorer, click *.docx file to open MS Word, click *.avi file to open Windows Media Player, and so on...

You may use Local Explorer to open local file links & folder links to hard disk drives, Azure Active Directory or company's shared folders, mapped network drive directly in corporate website or local host site.

EXAMPLES
C:\Users\my_user_name\Documents ("My Documents" folders)
\\10.0.0.1\shared\local\folders\files (network drive)
W:\folder\ and W:\folder\file.docx (on webpages they're "file:///W:/folder/" and "file:///W:/folder/file.docx")

NOTES
- Currently it works only on Windows. We built this long ago for our in-house system and it's free. If you find any problem, contact us at [email protected] or click "Send Feedback" button before you post a negative review.
- The extension started to support Unicode since version 2022.11.30. It enables local file links or folders that contains Unicode characters.
- For the people complain about anti-vir warnings, it was a FALSE POSITIVE. We rebuilt our Integration module, see this http://goo.gl/qDNGP7

HOW TO ENABLE LOCAL FILE LINKS
For security reason, webpages are not allowed to read-write local resource on hard drives. To enable local file links, we need an integration between the extension and file system which is an external software runs outside of the browser. Read the simple steps described at http://www.vnprodev.com/browser-extensions/local-explorer-install.php
- Step 1: Add the extension to Chrome/Edge browser and enable "Allow access to file URLs".
- Step 2: Set your default folder in Options page and click Save Settings.
- Step 3: On Windows, download and install this app http://goo.gl/trX9bB for Windows Explorer integration. Run "LocalExplorer-Setup.exe" once then you're ready to go. Now you can open local file links directly while browsing the web.

SILENT INSTALL enterprise command line for the Integration module: LocalExplorer-Setup.exe /S                    

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

Tên Local Explorer - Open File Links in Chrome Local Explorer - Open File Links in Chrome
ID eokekhgpaakbkfkmjjcbffibkencdfkl
URL Chính Thức https://chromewebstore.google.com/detail/local-explorer-open-file/eokekhgpaakbkfkmjjcbffibkencdfkl
Mô tả Enable local file links to hard disk, Azure AD & company shared folders, mapped network drive directly in corporate/local host site.
Kích Thước Tệp 149 KB
Số Lần Cài Đặt 122,323
Phiên Bản Hiện Tại 2023.1.15.1
Cập Nhật Lần Cuối 2023-01-20
Ngày Phát Hành 2020-07-04
Đánh Giá 3.56/5 Tổng số 301 Đánh Giá
Nhà Phát Triển https://vnprodev.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.vnprodev.com/browser-extensions/local-explorer-install.php?utm_source=webstore
URL Trang Trợ Giúp https://www.vnprodev.com/browser-extensions/local-explorer-install.php#userguide
URL Trang Chính Sách Bảo Mật https://www.vnprodev.com/browser-extensions/privacy
Ngôn Ngữ Được Hỗ Trợ ms,de,en,en-GB,en-US,fr,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,hi,th,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2023.1.15.1",
    "short_name": "Local Explorer",
    "name": "Local Explorer - Open File Links in Chrome",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "icons": {
        "128": "icon128.png",
        "32": "icon32.png",
        "16": "icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "sweetalert.css"
            ],
            "js": [
                "jquery.js",
                "sweetalert.js",
                "content.js"
            ],
            "all_frames": false,
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": "icon32.png",
        "default_title": "Local Explorer"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "manifest_version": 3
}