Amadeus Digital DNA Extension

Amadeus Digital DNA Extension

The Amadeus Digital DNA Extension provides end-users the ability to authenticate on some dedicated Amadeus web applications with a second factor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "128": "img/icon128.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "50.0"
    }
  },
  "version": "1.4.5",
  "manifest_version": 2,
  "permissions": [
    "nativeMessaging",
    "background",
    "http://*/",
    "https://*/",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "https://*/",
        "http://*/",
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "ddna.utils.js",
        "event_handler.js",
        "functions.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "ddna.utils.js",
    "ddna.api.js"
  ]
}