Collusion Image Alt Text Viewer

Replace images with their alt attribute text for Debugging or SEO

Apa itu Collusion Image Alt Text Viewer?

Collusion Image Alt Text Viewer adalah ekstensi Chrome yang dikembangkan oleh https://collusionapp.com, dan fitur utamanya adalah "Replace images with their alt attribute text for Debugging or SEO".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Collusion Image Alt Text Viewer

Unduh file ekstensi Collusion Image Alt Text Viewer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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)                    

Informasi Dasar Ekstensi

Nama Collusion Image Alt Text Viewer Collusion Image Alt Text Viewer
ID klhaeinjhbihcifafpnanfiobkhfeomk
URL Resmi https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk
Deskripsi Replace images with their alt attribute text for Debugging or SEO
Ukuran File 69.27 KB
Jumlah Instalasi 852
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2016-10-31
Tanggal Publikasi 2016-10-31
Penilaian 3.40/5 Total 5 Penilaian
Pengembang https://collusionapp.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://collusionapp.com
URL Halaman Kebijakan Privasi https://collusionapp.com/legal
Bahasa yang Didukung 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
    }
}