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文件

下载Collusion Image Alt Text Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
    }
}