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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}