Friend Deleter

Friend Deleter

Easly remove inactive and deactivated friends from your Facebook.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Friend Deleter",
  "description": "Easly remove inactive and deactivated friends from your Facebook.",
  "version": "2.0.24",
  "icons": {
    "16": "images/60992fabb9c3853f34281099-1624559888827-small.png",
    "48": "images/60992fabb9c3853f34281099-1624559888943-medium.png",
    "128": "images/60992fabb9c3853f34281099-1624559889058-large.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": "Friend Deleter"
  },
  "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": "FD"
}