File Links Opener

File Links Opener

Open links to local files and folders (file:///) in system file manager or associated application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "File Links Opener",
  "description": "__MSG_extensionDescription__",
  "version": "0.7",
  "author": "Dmitry Unruh",
  "icons": {
    "32": "img/32.png",
    "48": "img/48.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "default_locale": "en",
  "permissions": [
    "nativeMessaging",
    "notifications",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}