Twitter or X: Delete all tweets free

Twitter or X: Delete all tweets free

powerful tool designed to help you easily delete all of your Tweets, Retweets, Replies, Media posts on Twitter.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Delete All Tweets",
  "version": "7.1",
  "description": "Adds a button to Twitter that deletes the tweets.",
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "*://*.twitter.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*",
        "https://mobile.twitter.com/*"
      ],
      "js": [
        "script.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Delete Tweets"
  },
  "icons": {
    "128": "icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{da8ee678-90f1-4290-96d4-64f2ddd979a4}"
    }
  }
}