Twitter Visible Alt Text

Makes alt text visible for sighted users
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Twitter Visible Alt Text",
  "version": "1.0.0",
  "description": "Makes alt text visible for sighted users",
  "manifest_version": 2,
  "icons": {
    "48": "icon-48.png",
    "96": "icon-96.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://twitter.com/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}