Background Removal

Background Removal

An offline tool to remove the background of an image using WebGPU, transformers and RMBG model

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "0.1.2",
  "name": "Background Removal",
  "description": "An offline tool to remove the background of an image using WebGPU, transformers and RMBG model",
  "homepage_url": "https://webextension.org/listing/background-removal.html",
  "offline_enabled": true,
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "/data/icons/16.png",
    "32": "/data/icons/32.png",
    "48": "/data/icons/48.png",
    "64": "/data/icons/64.png",
    "128": "/data/icons/128.png",
    "256": "/data/icons/256.png",
    "512": "/data/icons/512.png"
  },
  "action": {},
  "background": {
    "service_worker": "worker.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "commands": {
    "_execute_action": {}
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}