Alt or not

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

Alt or not क्या है?

Alt or not https://abitofaccess.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily see alt text on Twitter & TweetDeck. Get tips on accessible text. Get warned or prevented from posting inaccessible tweets."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Alt or not एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        It's often difficult or cumbersome to tell if images have alternative text on Twitter or TweetDeck. Alternative (or alt) text is used to describe images for those who can't see the image, making them more accessible.

This extension shows which images are missing alternative text, and displays the alt text below the images when available.

The extension also warns users when images in a tweet have no alt text when tweeting, and you can choose to disable the button entirely when alt text is missing, requiring you to add descriptions before you can tweet.

Version 1.3 introduces options to check the text of tweets for potential accessibility issues, giving suggestion on how to avoid those issues.

Version 1.1 introduces an option to hide tweets from accounts using an NFT profile pic.

Note: on TweetDeck descriptions are not displayed on GIFs.                    

एक्सटेंशन की मूल जानकारी

नाम Alt or not Alt or not
ID bhbbijphceaijfpppmdjmjalnogkhamc
आधिकारिक URL https://chromewebstore.google.com/detail/alt-or-not/bhbbijphceaijfpppmdjmjalnogkhamc
विवरण Easily see alt text on Twitter & TweetDeck. Get tips on accessible text. Get warned or prevented from posting inaccessible tweets.
फ़ाइल का आकार 23.15 KB
स्थापना संख्या 759
वर्तमान संस्करण 1.3
अंतिम अपडेट 2022-08-29
प्रकाशन तिथि 2021-02-19
रेटिंग 5.00/5 कुल 7 रेटिंग्स
डेवलपर https://abitofaccess.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.abitofaccess.com/alt-or-not
समर्थित भाषाएँ en
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 & TweetDeck. Get tips on accessible text. Get warned or prevented from posting inaccessible tweets.",
    "version": "1.3",
    "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\/*"
            ],
            "css": [
                "alt-or-not.css"
            ],
            "js": [
                "script.js",
                "twitter.js"
            ]
        },
        {
            "matches": [
                "https:\/\/tweetdeck.twitter.com\/*"
            ],
            "css": [
                "alt-or-not.css"
            ],
            "js": [
                "script.js",
                "tweetdeck.js",
                "twitter.js"
            ]
        }
    ]
}