Hide Twitter / X.com Ads

Hide Twitter / X.com Ads

Free tool that hides Promoted Tweets while you browse Twitter (X.com).

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hide Twitter / X.com Ads",
  "action": {},
  "short_name": "Hide Twitter Ads",
  "description": "Free tool that hides Promoted Tweets while you browse Twitter (X.com).",
  "version": "1.1.9",
  "icons": {
    "16": "img/hide-twitter-ads-16.png",
    "48": "img/hide-twitter-ads-48.png",
    "128": "img/hide-twitter-ads-128.png"
  },
  "permissions": [],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.twitter.com/*",
        "https://*.twitter.com/*",
        "http://*.x.com/*",
        "https://*.x.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}