TECH-ARROW's WinShortcutter Extension

TECH-ARROW's WinShortcutter Extension

Transforms File URLs (using the file:// protocol) in webpages so that they are opened by TECH-ARROW's WinShortcutter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "TECH-ARROW's WinShortcutter Extension",
  "version": "5.0.2",
  "description": "Transforms File URLs (file:) in webpages so that they are opened by TECH-ARROW's WinShortcutter",
  "homepage_url": "https://winshortcutter.com",
  "icons": {
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "background.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{b4eef45e-3284-4fbf-85c9-7929dfbedef1}"
    }
  }
}