Comeet Sourcing for Chrome

Comeet Sourcing for Chrome

Source candidates from LinkedIn with just the click of a button!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Comeet Sourcing for Chrome",
  "description": "Source candidates from LinkedIn with just the click of a button!",
  "version": "0.1.7.4",
  "action": {
    "default_popup": "popup/popup.html",
    "default_title": "Comeet",
    "default_icon": {
      "16": "common/img/co-16-blue.png",
      "48": "common/img/co-48-blue.png",
      "128": "common/img/co-128-blue.png"
    }
  },
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.linkedin.com/*",
        "https://*.linkedin.com/*"
      ],
      "css": [
        "content_scripts/styles.css"
      ],
      "js": [
        "common/lib/jquery-3.1.1.min.js",
        "common/lib/iframeResizer.min.js",
        "common/js/extensionConfig.js",
        "content_scripts/config.js",
        "content_scripts/linkedinUtils.js",
        "content_scripts/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "common/img/*"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "common/js/*",
        "common/lib/*"
      ],
      "matches": [
        "http://*.linkedin.com/*",
        "https://*.comeet.co/*",
        "https://*.comeet.com/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "webNavigation"
  ],
  "host_permissions": [
    "*://*.comeet.co/*",
    "http://*.linkedin.com/*",
    "https://*.linkedin.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "https://*.comeet.co/*"
    ]
  }
}