Exelare Open Sourcing

Exelare Open Sourcing

This is Exelare's Chrome extension for sourcing candidates from Google.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Exelare Open Sourcing",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "This is Exelare's Chrome extension for sourcing candidates from Google.",
  "background": {
    "scripts": [
      "jquery.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "activeTab",
    "http://*/",
    "https://*/"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://exelare-angular-test.azurewebsites.net/*",
      "*://exelareweb.com/*"
    ]
  }
}