Fast Delete Messages

Fast Delete Messages

Simply delete all Facebook messages in Chrome just in 2 clicks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Gorillas Brain",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "32": "assets/icons/icon_32.png",
      "48": "assets/icons/icon_48.png",
      "64": "assets/icons/icon_64.png",
      "128": "assets/icons/icon_128.png"
    },
    "default_popup": "index.html",
    "default_title": "__MSG_default_title__"
  },
  "options_page": "index.html",
  "content_scripts": [
    {
      "js": [
        "content/content.js"
      ],
      "matches": [
        "*://*.facebook.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "isolated_world": "script-src 'self' 'unsafe-eval'; object-src 'self'"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "32": "assets/icons/icon_32.png",
    "48": "assets/icons/icon_48.png",
    "64": "assets/icons/icon_64.png",
    "128": "assets/icons/icon_128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmlp8rj1T1opM0aa/UWX3B7odSdVwUK5ti3+7bVVms1EOrTvtLoMSs5eiZ6qGzbHHlViL2BXkYdflr5uGg2Js29qCmm2TpNhzAkr966ReJ/Rx0zOljprnAZtjx6KjQfsBeuPa59JJRud4VJZPI4+fO1vSX1Z6tu0LuaEJpoP84f+2CPXR9P1hJiY9+t2tMRGnw7eHrukifuLKUWSBW1l8HkT940uOfd2pMZvoHDp1gQ8FdY7C9TKojKldb+GGSKy3V10oQkFn6V80mTpKQKo42jDiOQu4GcAtvuS1Y/1qPNQBhQCd67nPaPgO3QVYao0VAHbjenqrXs0mElbh/1zLqQIDAQAB",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*.facebook.com/*",
    "*://*.addonup.com/*"
  ],
  "short_name": "__MSG_short_name__",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.7.0",
  "version_name": "1.7.0",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "content/*.*"
      ]
    }
  ]
}