Prospect Remover

Prospect Remover

Automatically remove inactive and deactivated prospects from your Facebook account

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Prospect Remover",
  "description": "Automatically remove inactive and deactivated prospects from your Facebook account",
  "version": "1.5.5",
  "icons": {
    "16": "images/60a4e857c27a7e5a7784aaca-Prospect_Remover-1655093294659-small_icon.png",
    "48": "images/60a4e857c27a7e5a7784aaca-Prospect_Remover-1655093294766-medium_icon.png",
    "128": "images/60a4e857c27a7e5a7784aaca-Prospect_Remover-1655093294897-large_icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.facebook.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Prospect Remover"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "host_permissions": [
    "https://*.facebook.com/*",
    "https://api.frienddisconnector.com/*",
    "https://*.amazonaws.com/*"
  ],
  "permissions": [
    "alarms",
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.css",
        "*.html",
        "*.js",
        "*.map",
        "*.png",
        "*.svg"
      ],
      "matches": [
        "https://*.facebook.com/*"
      ]
    }
  ],
  "short_name": "PR"
}