DeleteBG | Delete a background of your images

DeleteBG is an easy service for quick image editing with a few mouse clicks. Suitable for professional photographers and designers
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "DeleteBG | Delete a background of your images",
  "description": "DeleteBG is an easy service for quick image editing with a few mouse clicks. Suitable for professional photographers and designers",
  "version": "0.0.1",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": {},
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Deletebg",
    "default_popup": "popup-signIn.html"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "notifications",
    "tabs"
  ],
  "host_permissions": [
    "https://deletebg.top/",
    "*://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}