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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
}