EmailSherlock

EmailSherlock

Free Email Search on EmailSherlock.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EmailSherlock",
  "version": "0.2.1",
  "manifest_version": 3,
  "minimum_chrome_version": "100",
  "description": "Free Email Search on EmailSherlock.com",
  "homepage_url": "https://www.emailsherlock.com/",
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon-16x16.png",
      "48": "icons/icon-48x48.png",
      "128": "icons/icon-128x128.png"
    },
    "default_title": "Lookup found emails"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "imgs/top_left.png",
        "imgs/top_right.png",
        "imgs/bottom_left.png",
        "imgs/bottom_right.png"
      ],
      "matches": [
        "https://www.emailsherlock.com/*"
      ]
    }
  ]
}