Machine Sourcer

Machine Sourcer

Expand your network fast

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Machine Sourcer",
  "short_name": "Recruiting Automation",
  "version": "5.34",
  "description": "Expand your network fast",
  "author": "Hun Howard Kim & Christopher Boshae",
  "page_action": {
    "default_title": "Machine Sourcer",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.linkedin.com/*"
      ],
      "js": [
        "background/background.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background/setup.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "declarativeContent",
    "notifications",
    "cookies",
    "unlimitedStorage",
    "*://www.linkedin.com/*"
  ],
  "minimum_chrome_version": "60",
  "icons": {
    "16": "ms_icon_16.png",
    "48": "ms_icon_48.png",
    "128": "ms_icon_128.png"
  },
  "externally_connectable": {
    "matches": [
      "*://www.linkedin.com/*"
    ]
  },
  "content_security_policy": "script-src 'self' chrome-extension://tagmanager.google.com/debug https://www.google-analytics.com https://www.googletagmanager.com https://js.stripe.com/v3; object-src 'self'"
}