Emply Extension

Emply Extension

This extension can create candidates. Either empty or from their profiles on LinkedIn.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "js": [
        "jquery.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "js": [
        "main.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "emply.js"
      ],
      "matches": [
        "*://*.emply.net/extension/*"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {},
  "web_accessible_resources": [
    "button.html",
    "iframe.html"
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "description": "This extension can create candidates. Either empty or from their profiles on LinkedIn.",
  "manifest_version": 2,
  "name": "Emply Extension",
  "version": "1.0.0.6"
}