FitWidth

Adds an additional zoom mode for the default image view.

FitWidth là gì?

FitWidth là một tiện ích mở rộng Chrome được phát triển bởi shylux, và tính năng chính của nó là "Adds an additional zoom mode for the default image view.".

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

screenshot

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

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

                        The Google Chrome image view has two different zoom modes. This extension adds a third one.

Fit height or width: Fits the image to the window size. 

Original size: Displays the image in the original size. Ignores the window size.

-New- Fit width: Fits the image to the window width. If the image is too  high a scollbar is used.

This new mode is perfect to view very thin and high images like Screencaps.

Source: https://github.com/shylux/FitWidth                    

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

Tên FitWidth FitWidth
ID pggbiaffhagpmifmogkfibinbbgacled
URL Chính Thức https://chromewebstore.google.com/detail/fitwidth/pggbiaffhagpmifmogkfibinbbgacled
Mô tả Adds an additional zoom mode for the default image view.
Kích Thước Tệp 37.4 KB
Số Lần Cài Đặt 490
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2021-04-21
Ngày Phát Hành 2019-09-21
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển shylux
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/shylux/FitWidth
URL Trang Trợ Giúp https://github.com/shylux/FitWidth/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FitWidth",
    "version": "1.1",
    "description": "Adds an additional zoom mode for the default image view.",
    "icons": {
        "128": "zoomplus.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "maximg.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2
}