Form Fill Utility

Form Fill Utility

Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Form Fill Utility",
  "version": "2.7",
  "description": "Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website",
  "permissions": [
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "*://assisted-service.egov-nsdl.com/*",
    "*://www.myutiitsl.com/*",
    "*://ruraleservices.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "manifest_version": 3,
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://assisted-service.egov-nsdl.com/*",
        "*://www.myutiitsl.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.js"
      ]
    }
  ]
}