Axiad Portal Extension

Axiad Portal Extension

Interface for authenticators such a Smart Cards and YubiKeys

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Axiad Portal Extension",
  "version": "1.5.0",
  "author": "Axiad",
  "description": "Interface for authenticators such a Smart Cards and YubiKeys",
  "icons": {
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "permissions": [
    "nativeMessaging",
    "storage"
  ],
  "page_action": {
    "default_icon": {
      "40": "img/off.png"
    },
    "default_title": "Axiad Portal Extension"
  },
  "background": {
    "scripts": [
      "api.js",
      "bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "fg.js"
      ],
      "run_at": "document_end"
    }
  ],
  "minimum_chrome_version": "55",
  "options_page": "opt/page.htm",
  "storage": {
    "managed_schema": "storage.json"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}