Inspect and view changes in Alt or not 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": 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"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}