WWPass Authentication

WWPass Authentication

WWPass authentication extension for Google Chrome

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "WWPass Authentication",
  "description": "WWPass authentication extension for Google Chrome",
  "version": "1.0.9",
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmeeNXSMV+ASD+bk1vWDu74h+ObdIxou/LjMpFB/kQ1DGWCLPaZJ7T3tEMuGYNiP2ztMUEyuMz01vi3pnx+hP/+6I75b7ssUonQgba+Do+5RZSC2Dk6vq1cmdqI5vTxnrzwzNw6hv5rjARLrkEs5axj/HQUCxeZMqiBr4L/FpFno6Xq7F7ctRWiarASVJfeS4xwrxFruwiQurCrIwnKexGhRga1pKBpFX/8tXg34aOKfiuMn8MjJ6Jj5G8976PTBtW153wR+mBOyR3XP1cuDjaSpL9KNF3sZKh9Sz6u1Qc81Ggy+5XTdGixZzDddtmo+IHpUONF1VYs14Wcr5zvLN7QIDAQAB",
  "icons": {
    "128": "images/logo-128.png"
  },
  "permissions": [
    "nativeMessaging"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "plugin.js"
      ]
    }
  ]
}