Superpowers for LinkedIn

Superpowers for LinkedIn

Mass connect, mass withdraw invitation and mass view profile on LinkedIn with powerful options.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Clemens Teichmann",
  "description": "Mass connect, mass withdraw invitation and mass view profile on LinkedIn with powerful options.",
  "manifest_version": 3,
  "name": "Superpowers for LinkedIn",
  "homepage_url": "https://www.clemensteichmann.com/superpowers-for-linkedin",
  "version": "48",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "icons": {
    "16": "images/superpowers_for_linkedin16.png",
    "48": "images/superpowers_for_linkedin48.png",
    "128": "images/superpowers_for_linkedin128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "resources": [
        "app.js"
      ]
    }
  ]
}