Reduvic

Reduvic

Browser extension to help researchers manage the impact of graphic content by applying visual filters to images and videos (like making them black-and-white)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "[email protected]",
  "description": "Browser extension to help manage the impact of graphic content",
  "name": "Reduvic",
  "version": "1.0.1",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_title": "Click to enable or disable Reduvic"
  },
  "background": {
    "service_worker": "serviceWorker.js",
    "page": "background.html",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "src/entries/contentScript/primary/main.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "icons/reduvicIcon_16.png",
    "19": "icons/reduvicIcon_19.png",
    "32": "icons/reduvicIcon_32.png",
    "48": "icons/reduvicIcon_48.png",
    "128": "icons/reduvicIcon_128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/src/entries/contentScript/primary/main-673Qi47S.js",
        "assets/browser-polyfill-BRA2LagP.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}