Goldie May

Goldie May

Software Power Tools for Genealogists

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Goldie May",
  "short_name": "goldiemay",
  "description": "Software Power Tools for Genealogists",
  "author": "Richard K. Miller",
  "version": "2024.8",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+G"
      }
    },
    "take-screenshot": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Take a screenshot to save to your log"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.ancestry.ca/*",
        "https://*.ancestry.co.uk/*",
        "https://*.ancestry.com/*",
        "https://*.ancestry.com.au/*",
        "https://www.familysearch.org/*"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "https://*.ancestry.ca/*",
        "https://*.ancestry.co.uk/*",
        "https://*.ancestry.com/*",
        "https://*.ancestry.com.au/*"
      ],
      "run_at": "document_start",
      "js": [
        "blur_all.js"
      ]
    },
    {
      "matches": [
        "https://app.goldiemay.com/*"
      ],
      "js": [
        "goldiemay_content.js"
      ]
    }
  ],
  "permissions": [
    "https://*.ancestry.com/*",
    "https://*.familysearch.org/*",
    "https://app.goldiemay.com/*",
    "activeTab",
    "contextMenus",
    "tabs"
  ],
  "optional_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "images/black-016.png",
    "48": "images/black-048.png",
    "128": "images/black-128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/black-016.png",
      "24": "images/black-024.png",
      "32": "images/black-032.png"
    },
    "default_title": "Goldie May"
  }
}