Asan ID token signing

Asan ID token signing

Use your Asan ID smart card on the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Asan ID token signing",
  "version": "0.0.1",
  "minimum_chrome_version": "40.0",
  "manifest_version": 2,
  "description": "Use your Asan ID smart card on the web",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file:///*"
      ],
      "js": [
        "azedit_content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "azedit_background.js"
    ]
  },
  "web_accessible_resources": [
    "azedit_page.js"
  ],
  "permissions": [
    "nativeMessaging"
  ]
}