Block Twitter/X ads and annoying UI elements.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Twitter/X Ad Blocker",
"version": "0.0.8",
"description": "Block Twitter/X ads and annoying UI elements.",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"64": "images/icon-64.png",
"96": "images/icon-96.png",
"128": "images/icon-128.png",
"256": "images/icon-256.png",
"512": "images/icon-512.png"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"*://*.twitter.com/*",
"*://*.x.com/*"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
}
}
}