Phone and Email Finder by Nymeria

Easily find a person's email address, phone number and social links with one click.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Phone and Email Finder by Nymeria",
  "version": "4.2.9",
  "manifest_version": 2,
  "description": "Easily find a person's email address, phone number and social links with one click.",
  "homepage_url": "https://www.nymeria.io",
  "icons": {
    "16": "assets/icon.png",
    "48": "assets/icon.png",
    "128": "assets/icon.png"
  },
  "browser_action": {
    "default_icon": "assets/icon.png",
    "default_title": "Click to find contact information!",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "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": [
    "tabs",
    "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."
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{7556ab4a-1de3-4f4b-994f-f09e0fa4b262}"
    }
  }
}