external-app-launcher

external-app-launcher

Launch certain URLs with external programs. This can be used to block a set of urls from being loaded, and another set of urls to be forwarded to a remote endpoint. For example, to open youtube urls in an external player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Launch certain URLs with external programs. Icon by Freepik from flaticon.com.",
  "developer": {
    "name": "David Ventura",
    "url": "https://github.com/DavidVentura/Firefox_External_Applications"
  },
  "manifest_version": 2,
  "name": "external-app-launcher",
  "version": "1.0",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "48": "icons/icon.png"
  }
}