Bank credentials

Bank credentials

Saves default logins and fills in fields on ebank page.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bank credentials",
  "description": "Saves default logins and fills in fields on ebank page.",
  "version": "1.1.5",
  "action": {
    "default_popup": "index.html",
    "default_title": "Bank credentials",
    "default_icon": {
      "16": "icons/icon_16.png",
      "24": "icons/icon_48.png",
      "32": "icons/icon_128.png"
    }
  },
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://e.seb.lt/*",
    "https://ibanka.seb.lv/*",
    "https://e.seb.ee/*",
    "https://swedbank.lt/*",
    "https://www.swedbank.lt/*",
    "https://www.swedbank.lv/*",
    "https://swedbank.lv/*",
    "https://www.swedbank.ee/*",
    "https://swedbank.ee/*",
    "https://ib.dnb.lt/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://e.seb.lt/*",
        "https://ibanka.seb.lv/*",
        "https://e.seb.ee/*",
        "https://swedbank.lt/*",
        "https://www.swedbank.lt/*",
        "https://www.swedbank.lv/*",
        "https://swedbank.lv/*",
        "https://www.swedbank.ee/*",
        "https://swedbank.ee/*",
        "https://ib.dnb.lt/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}