DeepfakeProof

DeepfakeProof

A plugin that helps the user discover deepfakes during their browser visits.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DeepfakeProof",
  "description": "A plugin that helps the user discover deepfakes during their browser visits.",
  "version": "2.0.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.jpg",
        "images/*.png",
        "images/help-img/*.svg",
        "images/feedback/*.svg",
        "images/overlay/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://www.google.com/search?*",
        "*://www.bing.com/images/search?*",
        "*://www.bing.com/search?*",
        "*://duckduckgo.com/?*"
      ],
      "css": [
        "css/content/dfp.css"
      ],
      "js": [
        "js/content/constants.js",
        "js/content/utility.js",
        "js/content/feedbackBeta.js",
        "js/content/icons.js",
        "js/content/overlay.js",
        "js/content/visualisation.js",
        "js/content/content.js",
        "js/content/observers.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/index.html",
    "default_icon": "images/icon_32.png"
  },
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  }
}