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開發的Chrome擴展程式,該擴展的主要功能是“Easily see alt text on Twitter & TweetDeck. Get tips on accessible text. Get warned or prevented from posting inaccessible tweets.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Alt or not擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}