Web Guide

Web Guide

Prefill common form fields with data you've entered elsewhere and save time online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Web Guide",
  "version": "1.0.1",
  "description": "Prefill common form fields with data you've entered elsewhere and save time online.",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAidMklJh5cMiL6MGWJ4QVhoqgO90pTlZTF34B11OsYj3v5+AxoHg31ZBXKzAfcI3lLMytKLr5jhNo+wueZQvWF0ukzXb2uNtHCF3Lvb/annDkl9btPoBqs30gtguapRmJrqNG16MTCtCFz+2MtpxpBPKOdxoDQHSv4OI7vdc47meKYw2dVrkz/YGAkZpAojVcHvfpRoIOsFkvFgObiS00iwlmmo8ks4sTGRZ2sAy0Hxvv7YKOVcU7qS5DMeobHlhGxeVqIIT+ewia0nxUKuNMRReDOFYXftVHCm2oFKnFCuG8uINVa7ljZyW5EgY+fWkO6TVDqITEWTgbNf5Q47bJuQIDAQAB",
  "action": {
    "default_icon": "icons/icon48.png",
    "default_title": "Web Guide",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "32": "icons/icon32.png",
    "38": "icons/icon38.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-scripts/form-guide-script/index.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-scripts/config-generator/index.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}