Linkedin Event Inviter

Linkedin Event Inviter

Invite your connections to any LinkedIn event

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Linkedin Event Inviter",
  "description": "Invite your connections to any LinkedIn event",
  "version": "0.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_icon": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "content-script.js"
      ]
    }
  ]
}