Checker - The Fact Check Extension

Checker - The Fact Check Extension

Protect yourself against misinformation, disinformation and scams with Checker - The Fact Check Extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Checker - The Fact Check Extension",
  "version": "1.1.10.0",
  "description": "Protect yourself against misinformation, disinformation and scams with Checker - The Fact Check Extension.",
  "permissions": [
    "storage",
    "<all_urls>",
    "scripting",
    "activeTab",
    "notifications"
  ],
  "action": {
    "default_icon": "Graphics/icon64.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-src https://www.aap.com.au/ https://www.abc.net.au/news/factcheck https://apnews.com/ https://factcheck.afp.com/ https://www.factcheck.org https://factcheckhub.com/ https://factcheckni.org/ https://fullfact.org/ https://healthfeedback.org/ https://www.newsweek.com/ https://www.politifact.com/ https://www.reuters.com/ https://www.snopes.com https://www.usatoday.com/ https://www.washingtonpost.com/"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "phrasesCatalogue.js",
        "popupFunctions.js",
        "achievements.js",
        "content-script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "FAQ/FAQ.html",
        "SecurityPolicy.html",
        "figures.html",
        "Graphics/icon64.png",
        "Graphics/*",
        "Sounds/notification-sound-1.mp3",
        "Sounds/notification-sound-2.mp3",
        "Sounds/notification-sound-3.mp3",
        "Sounds/achievement-pop.mp3",
        "FactChecks/*/*",
        "timerWorker.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "64": "Graphics/icon64.png",
      "128": "Graphics/icon128.png"
    }
  },
  "icons": {
    "64": "Graphics/icon64.png",
    "128": "Graphics/icon128.png"
  }
}