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
Eメール [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
    }
}