Family Tree Validator

Ensure your family's information on FamilySearch is correct and complete. Validator makes this quick and easy.
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",
  "author": "Robert Scott, Find My Roots Consulting",
  "name": "Family Tree Validator",
  "description": "Ensure your family's information on FamilySearch is correct and complete. Validator makes this quick and easy.",
  "version": "25.01.06",
  "version_name": "25.01.06 (02/26/2025)",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgXt4qg5k2FIR7krLyIL0ifWaT7I+jgtjU8kjOpPc6Rc2ZDmCxWYwGXgkf5WnPiX+zVIyCRYmRqaM/Q89rvLcsyAmSqo1VRVxnKFUBIpsPFIaBcKqQYN3FaA1FvPrWgwDyjj2FTd+BOIuyLbcxWb6xxdS4q1cewhzw0lBaO03abVC96JZRqN7KxjhfNUhE47nTOT6Waxw9TWerUkcdvtdOYClv6+uafpdLnDklKEKeOYDAw1NadphJRXiChKKkSEFIvJiP99VRnGRflOhhZNIANuW1CYgQa82kvcTafoUi3tsYOtbgBquP14Qy0G8iOMC+GmukfhLvePyqr83geYerwIDAQAB",
  "icons": {
    "16": "icons/16p.png",
    "32": "icons/32p.png",
    "48": "icons/48p.png",
    "64": "icons/64p.png",
    "128": "icons/128p.png"
  },
  "background": {
    "service_worker": "vBackground.js"
  },
  "options_page": "vOptions.html",
  "action": {
    "default_popup": "vPopup.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://*.familysearch.org/*",
    "https://*.findmyroots.tech/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.ftv"
      ],
      "matches": [],
      "extension_ids": []
    }
  ]
}