Tweet Delete - Bulk Delete Tweets

Tweet Delete - Bulk Delete Tweets

Delete Twitter posts/X posts in bulk based on advanced filtering. Can run once or automatically on a schedule.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "version": "1.7",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/mount.js",
        "/content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "*://*.twitter.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/injected.js"
      ],
      "matches": [
        "https://*.twitter.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}