Examine source code of Suggestions Purge

Inspect and view changes in Suggestions Purge source codes across current and past versions
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": 3,
  "version": "1.1",
  "name": "Suggestions Purge",
  "description": "Removes suggested spam content from Linkedin web pages.",
  "author": "Dominik Polzer",
  "homepage_url": "https://dpolzer.pages.dev",
  "icons": {
    "48": "icon-48.png",
    "96": "icon-96.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{12133349-5bc3-421b-aba1-55b641ac8083}"
    }
  }
}