Alt-Tag Overlay

Display an overlay of alt tags overtop images

ما هو Alt-Tag Overlay؟

Alt-Tag Overlay هو إضافة Chrome تم تطويرها بواسطة https://www.jsabo.net، والميزة الرئيسية لها هي "Display an overlay of alt tags overtop images".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Alt-Tag Overlay

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

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

                        Quickly and easily see all alt tags overlaying the photos currently on the webpage you're viewing. As absolute positioning can screw things up, I included an overlay to see outside of the website's own layout.                    

معلومات أساسية عن التمديد

الاسم Alt-Tag Overlay Alt-Tag Overlay
ID hcccpjiloncfhkjolfepfokhjbgboikm
عنوان URL الرسمي https://chromewebstore.google.com/detail/alt-tag-overlay/hcccpjiloncfhkjolfepfokhjbgboikm
الوصف Display an overlay of alt tags overtop images
حجم الملف 73.1 KB
عدد التثبيتات 1,359
النسخة الحالية 0.92
آخر تحديث 2024-03-01
تاريخ النشر 2020-04-09
تقييم 3.60/5 مجموع تقييمات 5
المطور https://www.jsabo.net
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://www.jsabo.net
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Alt-Tag Overlay",
    "description": "Display an overlay of alt tags overtop images",
    "version": "0.92",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "backend.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Click to Toggle - Alt-Tag Overlay"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-3.2.1.min.js",
                "thirdParty\/jquery-ui.js",
                "custom.js"
            ],
            "run_at": "document_end"
        }
    ]
}