LendingClub

LendingClub

LendingClub

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.4.2",
  "name": "LendingClub",
  "short_name": "LENDINGCLUB_CHROME_EXTENSION",
  "description": "LendingClub",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlB8VucA/nxtAAMUUk0RLrvogXfvCJU0VmfBM4LiOgCSTlWyWIRDC84Dc7DMAWXeGQlqwDT6/u6Lbkb7JVHnZqxaBd8OUIMkT1kJWf5yxb34lAd1nR/kmaZ0PvCsWpZnSBy8/TUzUyH3DGjgCV9drQMy4WQT7ZVJg5tdLuwBpeNRRqajxqdVKoh7x9NN4+lpsSMpPtX2oguCly6x5uKhUDa/yzRxDl4exwkkJLjQRXaTw4lx+Ez3Kz5x3dpjJuWN4a+ugK8FGM6/m2+mzdKInX6/AtRqfw39T9B+GULAeog7Yql4gY2lI5AIXOB76CSe52zKow6KZaBIGjk5CLXsliQIDAQAB",
  "icons": {
    "128": "img/chromeStoreIcon.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "notifications",
    "background",
    "webRequest",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": "img/chromeIconDeactivated.png"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "browser-polyfill.min.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "earnings.html",
        "installation.html",
        "fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}