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 هو إضافة Chrome تم تطويرها بواسطة https://collusionapp.com، والميزة الرئيسية لها هي "Replace images with their alt attribute text for Debugging or SEO".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Collusion Image Alt Text Viewer

قم بتنزيل ملفات الامتداد Collusion Image Alt Text Viewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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
    }
}