FriendFilter for Facebook™

FriendFilter for Facebook™

Manage your friends list, track engagement and locate inactive profiles to unfriend on your Facebook™ page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FriendFilter for Facebook™",
  "version": "6.0.9",
  "description": "Manage your friends list, track engagement and locate inactive profiles to unfriend on your Facebook™ page",
  "author": "Kenny Crotty <[email protected]>",
  "manifest_version": 3,
  "permissions": [
    "scripting",
    "storage"
  ],
  "icons": {
    "16": "icons/16.png",
    "128": "icons/128.png"
  },
  "host_permissions": [
    "https://app.friendfilter.io/*",
    "https://api.friendfilter.io/*",
    "https://*.facebook.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "app.js",
        "robot-background.js",
        "robot-content.js",
        "styles.scss",
        "script.js"
      ],
      "matches": [
        "https://app.friendfilter.io/*",
        "https://*.facebook.com/*"
      ]
    }
  ],
  "action": {
    "default_title": "FriendFilter for Facebook™"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js",
        "script.js"
      ],
      "run_at": "document_start",
      "matches": [
        "https://*.facebook.com/*"
      ],
      "all_frames": false
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.friendfilter.io/*",
      "https://*.facebook.com/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
  }
}