Native Messaging Example

Native Messaging Example

Send a message to a native application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Native Messaging Example",
  "short_name": "NativeClient",
  "version": "1.0",
  "manifest_version": 2,
  "minimum_chrome_version": "33",
  "description": "Send a message to a native application.",
  "browser_action": {
    "default_icon": "icon-128.png",
    "default_popup": "main.html"
  },
  "icons": {
    "16": "icon-16.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "nativeMessaging"
  ]
}