Collusion Image Alt Text Viewer

Replace images with their alt attribute text for Debugging or SEO

Collusion Image Alt Text Viewer란 무엇입니까?

Collusion Image Alt Text Viewer은(는) https://collusionapp.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace images with their alt attribute text for Debugging or SEO"입니다.

확장 프로그램 스크린샷

screenshot

Collusion Image Alt Text Viewer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Simulates 'Text Only' or rather, not loading images to reveal their alt text attribute to help verify they are set and what they look like for accessibility or SEO.

Works for any website.

Includes options for high contrast colors.

Brought to you by Collusion (https://collusionapp.com)                    

확장 프로그램 기본 정보

이름 Collusion Image Alt Text Viewer Collusion Image Alt Text Viewer
ID klhaeinjhbihcifafpnanfiobkhfeomk
공식 URL https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk
설명 Replace images with their alt attribute text for Debugging or SEO
파일 크기 69.27 KB
설치 횟수 852
현재 버전 1.0.1
최근 업데이트 2016-10-31
출시 날짜 2016-10-31
평점 3.40/5 총 5 개의 평점
개발자 https://collusionapp.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://collusionapp.com
개인정보 보호 정책 페이지 URL https://collusionapp.com/legal
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Collusion Image Alt Text Viewer",
    "short_name": "AltTextView",
    "description": "Replace images with their alt attribute text for Debugging or SEO",
    "version": "1.0.1",
    "manifest_version": 2,
    "icons": {
        "128": "logo_icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js",
                "jquery-3.1.1.min.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "logo_icon_128_green.png",
        "deafult_title": "Collusion Image Alt Text Viewer",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}