NooRex native message

NooRex native message

The plugin is used to link the WEB page with our native application under Windows. We are developing software for taxi services.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "NooRex native message",
  "description": "Remote call native function.",
  "version": "1.0.2resigned1",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "tabs",
    "nativeMessaging"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "47.0"
    }
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "n_plugin_firefox_popup.html"
  }
}