Mouse Pinch-To-Zoom

Zoom in on a specific part of the website, like you would with a touchpad gesture!

Mouse Pinch-To-Zoom란 무엇입니까?

Mouse Pinch-To-Zoom은(는) nizioleque에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Zoom in on a specific part of the website, like you would with a touchpad gesture!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Mouse Pinch-To-Zoom 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Mouse Pinch-To-Zoom allows you to zoom in and out on a website without making everything huge and unreadable!

It works like a pinch-to-zoom gesture on a touchpad or a touchscreen, but all you need is a mouse wheel.

The extension offers three activation modes:
• Zoom by turning the mouse wheel while holding the Alt key
• Zoom by turning the mouse wheel while holding the left or right mouse button

You can also customize the speed and smoothness. All the settings are easily accessible by clicking on the extension logo.

If you experience any issues, please feel free to email me with a bug report.                    

확장 프로그램 기본 정보

이름 Mouse Pinch-To-Zoom Mouse Pinch-To-Zoom
ID pffiadlahfhoniddbipeiiohjnlongfi
공식 URL https://chromewebstore.google.com/detail/mouse-pinch-to-zoom/pffiadlahfhoniddbipeiiohjnlongfi
설명 Zoom in on a specific part of the website, like you would with a touchpad gesture!
파일 크기 38.91 KB
설치 횟수 8,000
현재 버전 2.3
최근 업데이트 2021-12-27
출시 날짜 2021-02-20
평점 4.82/5 총 131 개의 평점
개발자 nizioleque
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mouse Pinch-To-Zoom",
    "description": "Zoom in on a specific part of the website, like you would with a touchpad gesture!",
    "version": "2.3",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/prep.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/handlers.js",
                "content\/configure.js",
                "content\/iframe.js",
                "content\/scale.js",
                "content\/absolute.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    }
}