#FakeHunter

#FakeHunter

Aplikacja do zgłaszania wątpliwych treści publikowanych w internecie dotyczących wirusa SARS-CoV-2.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "#FakeHunter",
  "version": "1.1.8",
  "description": "Aplikacja do zgłaszania wątpliwych treści publikowanych w internecie dotyczących wirusa SARS-CoV-2.",
  "icons": {
    "16": "assets/icons/png/16x16-nieoceniona.png",
    "48": "assets/icons/png/48x48-nieoceniona.png",
    "128": "assets/icons/png/128x128-nieoceniona.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_globs": [
        "chrome://*"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; object-src 'self'",
  "permissions": [
    "activeTab",
    "tabs",
    "https://*.gstatic.com/",
    "https://*.google.com/"
  ],
  "web_accessible_resources": [
    "assets/img/*"
  ]
}