Social visual alt text

Visually show alternative text of social media images

Social visual alt text란 무엇입니까?

Social visual alt text은(는) Nick DeNardis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Visually show alternative text of social media images"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Social visual alt text 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        View the alt text applied to images without the need to inspect each image or use a screen reader.

It makes the alternate text on social media posts visible to sighted users on Twitter, Instagram, Facebook, and more. Human generated alt-text is visible on a blue background, AI-generated alt-text has a maroon background and images without alt text have a red line under the image. 

Options allow for customization of each color and which sites view the alt text.                    

확장 프로그램 기본 정보

이름 Social visual alt text Social visual alt text
ID bkpbmomfemcjdeekdffmbohifpndodmi
공식 URL https://chromewebstore.google.com/detail/social-visual-alt-text/bkpbmomfemcjdeekdffmbohifpndodmi
설명 Visually show alternative text of social media images
파일 크기 19.52 KB
설치 횟수 725
현재 버전 0.7.15
최근 업데이트 2023-08-07
출시 날짜 2021-06-16
평점 5.00/5 총 9 개의 평점
개발자 Nick DeNardis
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/nickdenardis/social-visual-alt-text
도움말 페이지 URL https://github.com/nickdenardis/social-visual-alt-text/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Social visual alt text",
    "description": "Visually show alternative text of social media images",
    "version": "0.7.15",
    "manifest_version": 3,
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/common.js",
                "src\/mastodon.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "src\/twitter.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/tweetdeck.twitter.com\/*"
            ],
            "js": [
                "src\/tweetdeck.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "src\/instagram.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "src\/linkedin.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "src\/facebook.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "\/images\/visual-alt-16.png",
        "32": "\/images\/visual-alt-32.png",
        "48": "\/images\/visual-alt-48.png",
        "128": "\/images\/visual-alt-128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{d63bf015-2002-4ef8-96dc-b99bab518ec9}"
        }
    }
}