Image Viewer

More than the default image viewer

Image Viewer là gì?

Image Viewer là một tiện ích mở rộng Chrome được phát triển bởi a155268747, và tính năng chính của nó là "More than the default image viewer".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Image Viewer 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

                        Image Viewer is a Chrome extension for improve your images viewing experiences.

Features
1. Collect and view all images on the page.
2. Support video poster and images in iframes.
3. Auto load most lazy loaded images.
4. Redirect middle click to original image
5. Go to original image on the page.
6. Fit, zoom, rotate and mirror the image.
7. Hotkey for image reverse search.
8. Download collected images.
9. Easy to use.
10. And more...

The UI is intuitive, you can use mouse or keyboard to control it.
Full manual is available in the repository of this project.
https://github.com/hospotho/Image-Viewer

You can buy me a coffee on https://ko-fi.com/tonymilktea                    

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

Tên Image Viewer Image Viewer
ID ghdcoodfcolpdebbdhbgkbodbjololfl
URL Chính Thức https://chromewebstore.google.com/detail/image-viewer/ghdcoodfcolpdebbdhbgkbodbjololfl
Mô tả More than the default image viewer
Kích Thước Tệp 95.23 KB
Số Lần Cài Đặt 743
Phiên Bản Hiện Tại 1.33
Cập Nhật Lần Cuối 2024-01-17
Ngày Phát Hành 2022-10-31
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển a155268747
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hospotho/Image-Viewer
Ngôn Ngữ Được Hỗ Trợ en,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.33",
    "default_locale": "en",
    "manifest_version": 3,
    "icons": {
        "16": "\/icon\/icon16.png",
        "128": "\/icon\/icon128.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "scripting",
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        "file:\/\/\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": {
            "16": "\/icon\/icon16.png",
            "128": "\/icon\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "\/scripts\/activate-url.js"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "commands": {
        "open-image-viewer": {
            "suggested_key": {
                "default": "Alt+1"
            },
            "description": "__MSG_view_images_in_image_viewer__"
        },
        "open-image-viewer-without-size-filter": {
            "suggested_key": {
                "default": "Alt+Shift+1"
            },
            "description": "__MSG_view_all_images_in_image_viewer__"
        }
    }
}