SuperDog Authentication Extension

SuperDog Authentication Extension

Send a message to a native application for authentication.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SuperDog Authentication Extension",
  "version": "2.0",
  "manifest_version": 3,
  "description": "Send a message to a native application for authentication.",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "nativeMessaging"
  ]
}