DID-SIOP

DID-SIOP

Self Issued OpenId Connect Provider for Decentralized Identity implemented as a browser add-on

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DID-SIOP",
  "version": "1.2.2",
  "description": "Self Issued OpenId Connect Provider for Decentralized Identity implemented as a browser add-on",
  "author": "Radical Ledger Technologies",
  "icons": {
    "16": "assets/did_siop_favicon.png"
  },
  "background": {
    "scripts": [
      "background-es5.js",
      "runtime-es5.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "DID-SIOP",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "inject-es5.js",
        "runtime-es5.js"
      ]
    }
  ],
  "manifest_version": 2
}