SmoothZoom – Quick Page Zoom

Pinch-to-zoom convenience, now on your desktop.

SmoothZoom – Quick Page Zoom란 무엇입니까?

SmoothZoom – Quick Page Zoom은(는) KristijanRoss에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pinch-to-zoom convenience, now on your desktop."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

SmoothZoom – Quick Page Zoom 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Hold right-click and spin the mouse wheel to zoom toward the cursor. Enjoy the convenience of pinch-to-zoom functionality from touch screens, now available on your desktop.

Try it out on this DEMO website, without downloading: https://zoom.k1k1.dev/

Many touchpads support pinch-to-zoom in a way that they trigger the built-in page zoom. You can intercept this action by changing the zoom activation key from "RClick" to "Ctrl". This way, you don't need a mouse wheel to use SmoothZoom!                    

확장 프로그램 기본 정보

이름 SmoothZoom – Quick Page Zoom SmoothZoom – Quick Page Zoom
ID nlloamlgdioincflcopfgkbikjgaiihg
공식 URL https://chromewebstore.google.com/detail/smoothzoom-%E2%80%93-quick-page-z/nlloamlgdioincflcopfgkbikjgaiihg
설명 Pinch-to-zoom convenience, now on your desktop.
파일 크기 236 KB
설치 횟수 1,242
현재 버전 1.2
최근 업데이트 2023-06-06
출시 날짜 2022-03-21
평점 4.77/5 총 35 개의 평점
개발자 KristijanRoss
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://zoom.k1k1.dev
개인정보 보호 정책 페이지 URL https://ednevnik.plus/politika-privatnosti
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SmoothZoom \u2013 Quick Page Zoom",
    "version": "1.2",
    "description": "Pinch-to-zoom convenience, now on your desktop.",
    "author": "Kristijan Rosandi\u0107",
    "offline_enabled": true,
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "service_worker": "background\/service-worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject\/content-script.js"
            ],
            "css": [
                "inject\/style.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "inject\/frame-messenger.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ]
}