In Zoom

Zoom in and out on images and videos using shift + mouse wheel and by other ways.

In Zoom là gì?

In Zoom là một tiện ích mở rộng Chrome được phát triển bởi https://kpion.github.io, và tính năng chính của nó là "Zoom in and out on images and videos using shift + mouse wheel and by other ways.".

Ả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 In Zoom

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

                        This extension works "inline", i.e. images are not displayed in a popup - instead they are enlarged exactly where they are. 

Press shift (customizable) and use mouse wheel to zoom in or out an image or video under pointer.

It's open source: https://github.com/kpion/inzoom

If you have any suggestions, please don't hesitate to reach me on [email protected] or file an issue on the github page above.

New in version 1.31: Keyboard shortcut to enlarge a photo and bring it to the front in one step (alt + a).                    

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

Tên In Zoom In Zoom
ID oppcghdbglmbhhobfoodedhokbadlenh
URL Chính Thức https://chromewebstore.google.com/detail/in-zoom/oppcghdbglmbhhobfoodedhokbadlenh
Mô tả Zoom in and out on images and videos using shift + mouse wheel and by other ways.
Kích Thước Tệp 453 KB
Số Lần Cài Đặt 5,000
Phiên Bản Hiện Tại 1.32
Cập Nhật Lần Cuối 2019-05-17
Ngày Phát Hành 2019-05-14
Đánh Giá 4.72/5 Tổng số 29 Đánh Giá
Nhà Phát Triển https://kpion.github.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://kpion.github.io/inzoom/
URL Trang Trợ Giúp https://kpion.github.io/inzoom/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "In Zoom",
    "version": "1.32",
    "description": "Zoom in and out on images and videos using shift + mouse wheel and by other ways.",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/kpion.github.io\/inzoom\/",
    "browser_action": {
        "default_popup": "browserAction\/index.html",
        "default_icon": {
            "16": "static\/images\/camera_lens_128.png",
            "32": "static\/images\/camera_lens_128.png",
            "48": "static\/images\/camera_lens_128.png",
            "128": "static\/images\/camera_lens_128.png"
        },
        "default_title": "In Zoom - zoom in \/ out on images and videos"
    },
    "background": {
        "page": "background\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "common\/app.js",
                "lib\/lightdom.js",
                "lib\/config.js",
                "lib\/hamster.js",
                "lib\/point.js",
                "inzoom\/inzoom.js"
            ],
            "css": [
                "inzoom\/style.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "static\/images\/camera_lens_128.png",
        "32": "static\/images\/camera_lens_128.png",
        "48": "static\/images\/camera_lens_128.png",
        "128": "static\/images\/camera_lens_128.png"
    },
    "manifest_version": 2
}