Phone and Email Finder by Nymeria

Phone and Email Finder by Nymeria

Easily find a person's email address, phone number and social links with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Phone and Email Finder by Nymeria",
  "version": "4.2.9",
  "manifest_version": 3,
  "description": "Easily find a person's email address, phone number and social links with one click.",
  "homepage_url": "https://www.nymeria.io",
  "minimum_chrome_version": "89",
  "incognito": "spanning",
  "icons": {
    "16": "assets/icon.png",
    "48": "assets/icon.png",
    "128": "assets/icon.png"
  },
  "action": {
    "default_icon": "assets/icon.png",
    "default_title": "Click to find contact information!",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*",
        "https://*.github.com/*",
        "https://*.github.io/*",
        "https://*.twitter.com/*",
        "https://*.facebook.com/*"
      ],
      "all_frames": false,
      "js": [
        "src/inject.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Space",
        "linux": "Ctrl+Shift+Space"
      },
      "description": "Send's a 'open-action' event to open the browser action."
    }
  }
}