RUQO

RUQO

This chrome extension will generate a modified qr code from the pureauth page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RUQO",
  "version": "1.1",
  "description": "This chrome extension will generate a modified qr code from the pureauth page.",
  "manifest_version": 3,
  "incognito": "split",
  "action": {
    "default_icon": "icons/logo128.png",
    "default_popup": "index.html",
    "default_title": "Generate QR Code"
  },
  "permissions": [
    "tabs",
    "nativeMessaging"
  ],
  "host_permissions": [
    "https://live.pureauth.io/*",
    "https://dev.pureauth.tech/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://live.pureauth.io/*",
        "https://dev.pureauth.tech/*"
      ],
      "js": [
        "include/qrcode.min.js",
        "include/jquery.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "icons/logo16.png",
    "32": "icons/logo32.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  }
}