Alt or not

Alt or not

Easily see alt text on Twitter. Get tips on accessible text. Get warned or prevented from posting inaccessible tweets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Alt or not",
  "description": "Easily see alt text on Twitter. Get tips on accessible text. Get warned or prevented from posting inaccessible tweets.",
  "version": "1.6",
  "options_ui": {
    "page": "options.html"
  },
  "action": {
    "default_icon": {
      "16": "icon-tiny.png",
      "32": "icon-small.png",
      "48": "icon-medium.png",
      "128": "icon-large.png"
    },
    "default_popup": "options.html"
  },
  "icons": {
    "16": "icon-tiny.png",
    "32": "icon-small.png",
    "48": "icon-medium.png",
    "128": "icon-large.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://mobile.twitter.com/*",
        "https://x.com/*",
        "https://mobile.x.com/*"
      ],
      "css": [
        "alt-or-not.css"
      ],
      "js": [
        "script.js",
        "twitter.js"
      ]
    }
  ]
}