In Zoom

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

In Zoomとは何ですか?

In Zoomはhttps://kpion.github.ioによって開発されたChromeの拡張機能で、その主な機能は「Zoom in and out on images and videos using shift + mouse wheel and by other ways.」です。

拡張機能のスクリーンショット

screenshot

In Zoom拡張機能のCRXファイルをダウンロード

In Zoom拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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).                    

拡張機能の基本情報

名前 In Zoom In Zoom
ID oppcghdbglmbhhobfoodedhokbadlenh
公式URL https://chromewebstore.google.com/detail/in-zoom/oppcghdbglmbhhobfoodedhokbadlenh
説明 Zoom in and out on images and videos using shift + mouse wheel and by other ways.
ファイルサイズ 453 KB
インストール数 5,000
現在のバージョン 1.32
最終更新日 2019-05-17
公開日 2019-05-14
評価 4.72/5 合計 29 レビュー
開発者 https://kpion.github.io
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://kpion.github.io/inzoom/
ヘルプページのURL https://kpion.github.io/inzoom/
対応言語 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
}