Examine source code of Twitter Content Warning Buttons

Inspect and view changes in Twitter Content Warning Buttons 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
{
  "manifest_version": 2,
  "name": "Twitter Content Warning Buttons",
  "description": "This extension will hide sensitive tweets with content warnings/notes behind a mask.",
  "version": "0.3",
  "permissions": [
    "*://twitter.com/*"
  ],
  "icons": {
    "48": "icon.png",
    "96": "icon@2x.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ]
}