Examine source code of No Covid in Facebook

Inspect and view changes in No Covid in Facebook 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": 2,
  "name": "No Covid In Facebook",
  "description": "Hides covid-related words and removes the annoying panel about COVID and vaccination, automatically added by Facebook to related posts. ",
  "author": "Yaroslav Luzin",
  "version": "0.2",
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon.png"
  }
}