Examine source code of Facebook Marketplace Login Remover

Inspect and view changes in Facebook Marketplace Login Remover 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Facebook Marketplace Login Remover",
  "version": "1.0",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://www.facebook.com/marketplace/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.facebook.com/marketplace/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "action": {
    "default_icon": "images/16x-icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/16x-icon.png",
    "48": "images/48x-icon.png",
    "128": "images/128x-icon.png"
  }
}