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