Who deleted me ?

Who deleted me ?

This extension sends notifications everytime you get unfriended from Facebook.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_appDesc__",
  "version": "3.2.0",
  "name": "__MSG_appName__",
  "default_locale": "en",
  "manifest_version": 3,
  "action": {
    "default_title": "Who deleted me ?"
  },
  "icons": {
    "48": "./icons/ic_48.png",
    "128": "./icons/ic_128.png"
  },
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://deleted.miinosoft.com/history.html"
      ],
      "js": [
        "history.bundle.js"
      ]
    },
    {
      "matches": [
        "https://deleted.miinosoft.com/index.html",
        "https://deleted.miinosoft.com/"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "externally_connectable": {
    "matches": [
      "https://deleted.miinosoft.com/*"
    ]
  },
  "permissions": [
    "alarms",
    "cookies",
    "storage",
    "notifications"
  ],
  "host_permissions": [
    "https://*.facebook.com/*"
  ]
}