Inspect and view changes in The Ad Blocker for X.com (Twitter) source codes across current and past versions
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": "The Ad Blocker for X.com (Twitter)",
"version": "1.4.2",
"short_name": "Twitter Ad blocker",
"description": "Hide ads and promoted tweets to make X.com (Twitter) less noisy",
"icons": {
"16": "/icons/logo16.png",
"32": "/icons/logo32.png",
"48": "/icons/logo48.png",
"128": "/icons/logo128.png"
},
"author": "Alexey Ryzhkov",
"content_scripts": [
{
"matches": [
"https://twitter.com/*",
"https://x.com/*"
],
"js": [
"scripts/block_noise.js"
]
}
],
"homepage_url": "https://github.com/aliocharyzhkov/twitter_cleaner",
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"permissions": [
"storage"
]
}