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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης Alt or not

Λήψη αρχείων επέκτασης Alt or not σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
            ]
        }
    ]
}