FamilySearch Center Premium Content

FamilySearch Center Premium Content

Allows access to premium websites and other content from a FamilySearch Center.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_header_title_FSC__",
  "description": "__MSG_extDescription_FSC__",
  "default_locale": "en",
  "manifest_version": 3,
  "version": "3.1.6",
  "action": {
    "default_icon": "icons/patron_disconnected_128.png",
    "default_title": "__MSG_header_title_FSC__",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "alarms",
    "proxy",
    "storage",
    "webRequest",
    "webRequestAuthProvider",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://localhost:5000/*",
        "https://www.familysearch.org/*",
        "https://beta.familysearch.org/*"
      ],
      "js": [
        "events.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:5000/",
      "https://www.familysearch.org/*",
      "https://beta.familysearch.org/*"
    ]
  }
}