Przelewy24

Przelewy24 Automatycznie wypełnia formularz przelewu przy płatnosci przez system Przelewy24.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Przelewy24",
  "version": "10.2.0",
  "description": "Przelewy24 Automatycznie wypełnia formularz przelewu przy płatnosci przez system Przelewy24.",
  "author": "Przelewy24",
  "icons": {
    "48": "src/assets/ico/ico.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/assets/js/jquery.min.js",
        "src/assets/js/p24.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "src/assets/js/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ]
}