FileTrail UNC Download

FileTrail UNC Download

Allows users to use UNC links

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "FileTrail UNC Download",
  "version": "1.3",
  "author": "[email protected]",
  "description": "Allows users to use UNC links",
  "icons": {
    "16": "FTicon16.png",
    "48": "FTicon48.png",
    "128": "FTicon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "downloads"
  ],
  "action": {
    "default_icon": "FTicon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js"
      ],
      "all_frames": true
    }
  ]
}