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
官方網址 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
    }
}