Fact Check Anything

Fact Check Anything

The ultimate reading and debating companion - fact check anything in seconds with AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Fact Check Anything",
  "description": "The ultimate reading and debating companion - fact check anything in seconds with AI.",
  "version": "1.0.3",
  "manifest_version": 3,
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "contentscript.css"
      ]
    }
  ],
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "options_page": "",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentscript.css",
        "logo.svg",
        "elaborate.svg",
        "close.svg",
        "logo_white.svg",
        "logo_outline.svg",
        "txt_true.svg",
        "txt_mostlytrue.svg",
        "txt_halftruth.svg",
        "txt_mostlyfalse.svg",
        "txt_false.svg",
        "txt_error.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://app.factcheckanything.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}