DeleteTweets

DeleteTweets

One-click delete tweets/retweets/replies/likes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "DeleteTweets",
  "description": "__MSG_extensionDescription__",
  "version": "2.7.0",
  "default_locale": "en",
  "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": [
        "https://*.twitter.com/*"
      ],
      "js": [
        "/content.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "*://*.twitter.com/*",
    "*://*.ikeyly.cn/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/injected.js"
      ],
      "matches": [
        "https://*.twitter.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "cookies"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx"
}