Alt-Tag Overlay

Display an overlay of alt tags overtop images

什么是Alt-Tag Overlay?

Alt-Tag Overlay是由https://www.jsabo.net开发的Chrome扩展程序,该扩展的主要功能是“Display an overlay of alt tags overtop images”。

扩展截图

screenshot
screenshot
screenshot

下载Alt-Tag Overlay扩展crx文件

下载Alt-Tag Overlay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}