FinFux

FinFux

Sammeldownloads auf Knopfdruck für Scalable Capital, Trade Republic und ING.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FinFux",
  "version": "0.0.8",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.amazonaws.com/*"
  ],
  "author": "Thorsten Schleinzer • schleinzer.dev",
  "description": "Sammeldownloads auf Knopfdruck für Scalable Capital, Trade Republic und ING.",
  "icons": {
    "64": "finfux_logo_64x64.png"
  },
  "action": {
    "default_icon": {
      "64": "finfux_logo_64x64.png"
    },
    "default_title": "FinFux © Thorsten Schleinzer • schleinzer.dev",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.scalable.capital/*"
      ],
      "run_at": "document_idle",
      "js": [
        "base.js",
        "js/scalablecapital.js"
      ]
    },
    {
      "matches": [
        "https://app.traderepublic.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "base.js",
        "js/traderepublic.js"
      ]
    },
    {
      "matches": [
        "https://banking.ing.de/*"
      ],
      "run_at": "document_idle",
      "js": [
        "base.js",
        "js/ing.js"
      ]
    }
  ]
}