Local Explorer - Open File Links in Chrome

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.

Merlin
Additional files are visible only to premium users

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": {
    "16": "icon16.png",
    "32": "icon32.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "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": [
    "<all_urls>"
  ],
  "manifest_version": 3
}