zkPass Template Factory

zkPass Template Factory

Template Factory is a mapping of specific HTML elements to the certificate generation system.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "zkPass Template Factory",
  "version": "1.0.2",
  "description": "Template Factory is a mapping of specific HTML elements to the certificate generation system.",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "debugger"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "static/js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/js/content_script.js"
      ],
      "css": [
        "static/css/content.css"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/*.png",
        "static/css/*.css",
        "static/js/common.js",
        "static/js/content.js",
        "static/js/client.js"
      ]
    }
  ],
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjHUBsGX15+DCxMf5dtbPrfNBuQOWgB5y2NkkgZ07pXbqP+jviREkgzBKCPLol7k982FYooQtyAcOvxlHNggv5LYspvW7F2sNMx544SSN1CD/5lZJv3hjMXpcppXWfBuy4ztKynpwY2M/v7gMxgqumbZmtPdJ//nTJt9+tZoM/hi0I3f17QBwltMQ0814jFyc3ueVQW5dug1d2P8HdguE4XhYpnIUG4+nA5JCGf7dYehkRgfcBUfp3ZmM5eNLwjZ6cxVZXkfLPL21aLw0FFrLo6+6khi+XnnTXfVfYdd5vutjxeqQWwy2sfv5MOoubij4e7/KPf6lVZ8jffcBXQCQuwIDAQAB",
  "homepage_url": "https://zkpass.org/"
}