Alt Text Copy

Copy Image Alt Text By Right Clicking

Alt Text Copy là gì?

Alt Text Copy là một tiện ích mở rộng Chrome được phát triển bởi hskolbeck, và tính năng chính của nó là "Copy Image Alt Text By Right Clicking".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Alt Text Copy

Tải xuống các tệp mở rộng Alt Text Copy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Adds an option to the right-click menu for images to allow easy copying of alt text, if present. After installing, pages will need to be refreshed before the extension will work.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Alt Text Copy Alt Text Copy
ID diklkehamgifnoikknopgieldonffjfk
URL Chính Thức https://chromewebstore.google.com/detail/alt-text-copy/diklkehamgifnoikknopgieldonffjfk
Mô tả Copy Image Alt Text By Right Clicking
Kích Thước Tệp 22.98 KB
Số Lần Cài Đặt 601
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2022-12-31
Ngày Phát Hành 2022-05-11
Đánh Giá 3.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển hskolbeck
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://hannah.industries
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.1",
    "manifest_version": 3,
    "default_locale": "en_US",
    "background": {
        "service_worker": "menu.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/getClickTarget.js"
            ]
        }
    ],
    "permissions": [
        "clipboardWrite",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "images\/AltTextCopy16.png",
            "32": "images\/AltTextCopy32.png",
            "48": "images\/AltTextCopy48.png",
            "128": "images\/AltTextCopy128.png"
        }
    },
    "icons": {
        "16": "images\/AltTextCopy16.png",
        "32": "images\/AltTextCopy32.png",
        "48": "images\/AltTextCopy48.png",
        "128": "images\/AltTextCopy128.png"
    }
}