RemoveBG PNG auto download

RemoveBG PNG auto download

Auto download transparent PNG when remove background at https://remove.bg

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "RemoveBG PNG auto download",
  "version": "1.0.11",
  "author": "Mr.Manit Treeprapankit",
  "description": "Auto download transparent PNG when remove background at https://remove.bg",
  "icons": {
    "16": "icons/icon-16x16.png",
    "32": "icons/icon-32x32.png",
    "48": "icons/icon-48x48.png",
    "64": "icons/icon-64x64.png",
    "128": "icons/icon-128x128.png"
  },
  "permissions": [
    "webRequest"
  ],
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "https://www.remove.bg/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://www.remove.bg/*",
    "https://o.remove.bg/*"
  ],
  "action": {
    "default_icon": "icons/icon-32x32.png",
    "default_title": "Download PNG"
  }
}