Fischer Fact Checker

Fischer Fact Checker

Fischer is a fact-checking tool developed to curb misinformation by democratizing and unveiling the fact-checking process.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0",
  "name": "Fischer Fact Checker",
  "description": "Fischer is a fact-checking tool developed to curb misinformation by democratizing and unveiling the fact-checking process.",
  "action": {
    "default_popup": "./dist/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus"
  ]
}