Delete all posts on fan / business page

Delete all posts on fan / business page

Do you have a lot of posts on fan/business Facebook page and you need to delete them all? This script delete all posts in 1 click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extname__",
  "version": "2022.11.30",
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "content.css",
        "fonts/roboto-latin-400.woff2",
        "fonts/roboto-latin-700.woff2"
      ],
      "matches": [
        "https://*.facebook.com/*"
      ]
    }
  ],
  "description": "__MSG_extdesc__",
  "homepage_url": "https://www.toolsandextensions.com/",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "action": {
    "name": "Click to start"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://*.facebook.com/*"
  ]
}