EzyForms

EzyForms

Through this extension users will be able to fetch data from Ezy-System to fill their required webforms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "EzyForms",
  "description": "Through this extension users will be able to fetch data from Ezy-System to fill their required webforms.",
  "version": "1.2.0",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/jquery.min.js",
        "scripts/contentscript.js",
        "scripts/common.js"
      ],
      "matches": [
        "*://*.immigration.govt.nz/*"
      ]
    }
  ],
  "host_permissions": [],
  "action": {
    "default_icon": "images/fav.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "images/fav.png"
  }
}