Collusion Image Alt Text Viewer

Replace images with their alt attribute text for Debugging or SEO

Collusion Image Alt Text Viewer là gì?

Collusion Image Alt Text Viewer là một tiện ích mở rộng Chrome được phát triển bởi https://collusionapp.com, và tính năng chính của nó là "Replace images with their alt attribute text for Debugging or SEO".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Collusion Image Alt Text Viewer

Tải xuống các tệp mở rộng Collusion Image Alt Text Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Collusion Image Alt Text Viewer Collusion Image Alt Text Viewer
ID klhaeinjhbihcifafpnanfiobkhfeomk
URL Chính Thức https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk
Mô tả Replace images with their alt attribute text for Debugging or SEO
Kích Thước Tệp 69.27 KB
Số Lần Cài Đặt 852
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2016-10-31
Ngày Phát Hành 2016-10-31
Đánh Giá 3.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://collusionapp.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://collusionapp.com
URL Trang Chính Sách Bảo Mật https://collusionapp.com/legal
Ngôn Ngữ Được Hỗ Trợ 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
    }
}