Examine source code of Twitter AdBlock

Inspect and view changes in Twitter AdBlock 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",
  "name": "Twitter AdBlock",
  "manifest_version": 2,
  "version": "1.2",
  "description": "Removes promoted links in timelines, following & trends. Bypasses Twitter's link warning & auto directs links clicked within tweets",
  "browser_action": {
    "name": "Manipulate DOM",
    "icons": [
      "icon.png"
    ],
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "background.js"
      ],
      "matches": [
        "http://*.twitter.com/*",
        "https://*.twitter.com/*"
      ]
    }
  ]
}