Remove Connections Helper

Remove Connections Helper

Get rid of the uneccesary extra dialog box when removing unwanted connections from LinkedIn.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Remove Connections Helper",
  "description": "Get rid of the uneccesary extra dialog box when removing unwanted connections from LinkedIn.",
  "version": "0.0.0.2",
  "browser_action": {
    "default_icon": "icon.png",
    "name": "Connection Remover"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "jquery-observe.js",
        "content.js"
      ],
      "matches": [
        "https://www.linkedin.com/connected/*"
      ]
    }
  ],
  "permissions": [
    "https://www.linkedin.com/connected/*"
  ]
}