File form filler

File form filler

Extension to form filling by uploaded excel or csv file

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "File form filler",
  "version": "2.0.1",
  "description": "Extension to form filling by uploaded excel or csv file",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/fillFormsSimple.js",
        "js/fillMultipleForms.js",
        "js/generateFile.js",
        "js/fillWithGeneratedFile.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 3,
  "icons": {
    "128": "assets/images/iconOnly.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}