Remove Background from Image

Remove Background from Image

Remove background from image with just one click. Upload the image and it will automatically remove the background

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.0.1",
  "name": "Remove Background from Image",
  "description": "Remove background from image with just one click. Upload the image and it will automatically remove the background",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "offline_enabled": true,
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png",
    "512": "icons/icon-512.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/default_icon_16.png",
      "32": "icons/default_icon_32.png",
      "48": "icons/default_icon_48.png",
      "128": "icons/default_icon_128.png",
      "512": "icons/default_icon_512.png"
    }
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.photoeditoronline.net/*"
      ],
      "js": [
        "app.js"
      ]
    }
  ]
}