XFA: Securing your device

XFA: Securing your device

Securing your device

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "XFA - Discover true optimal device security",
  "short_name": "XFA",
  "description": "Discover true optimal device security",
  "version": "0.26.0",
  "icons": {
    "192": "android-chrome-192x192.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.xfa.tech/*"
      ],
      "run_at": "document_start",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "XFA"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "options_ui": {
    "page": "options.html"
  },
  "optional_permissions": [
    "management"
  ],
  "permissions": [
    "nativeMessaging",
    "notifications",
    "alarms",
    "storage",
    "https://test-device-api.xfa.tech/*",
    "https://device-api.xfa.tech/*"
  ]
}