nofbclid

Facebook has recently begun injecting a fbclid parameter into all outgoing URLs. This is, imo, a bit of a dick move. So this addon strips that param from all url requests.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "nofbclid",
  "version": "1.4",
  "description": "Strips social media tracking params from url requests. Currently removes facebook's fbclid and instgrams igshid",
  "icons": {
    "48": "icons/logo-48.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "nofbclid.js"
    ]
  },
  "applications": {
    "gecko": {
      "id": "nofbclid@nboughton.uk"
    }
  }
}