Local Filesystem Links

Local Filesystem Links

Scans for local file system URIs (file:///) on any page. Click on the added icon to open the local link with the system's file manager. Alternatively, select any text that forms a path (e.g. "C:\tmp\cow 1.txt") and use the context menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Local Filesystem Links",
  "options_ui": {
    "page": "options.html"
  },
  "applications": {
    "gecko": {
      "id": "jid1-JAzC7z53jemo5Q@jetpack"
    }
  },
  "icons": {
    "48": "img/addon_icon_48.png",
    "96": "img/addon_icon_96.png"
  },
  "default_locale": "en",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "img/inactive_icon_16.png",
      "32": "img/inactive_icon_32.png"
    },
    "default_popup": "index.html"
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "css/*.css"
  ],
  "permissions": [
    "<all_urls>",
    "file://*/*",
    "storage",
    "activeTab",
    "contextMenus",
    "notifications",
    "tabs",
    "nativeMessaging",
    "webNavigation"
  ],
  "description": "Scans pages for file:/// links and makes it possible to open them with the system's file browser.",
  "version": "0.101.0"
}