Quick Zoom

Enables browser zoom with Cmd + mouse wheel

Quick Zoom란 무엇입니까?

Quick Zoom은(는) Tom Scott에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables browser zoom with Cmd + mouse wheel"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Quick Zoom allows you to zoom into the page using your mouse wheel and holding down the Cmd key.

Similar to the Ctrl + mouse wheel on Windows, Quick Zoom brings this functionality to macOS.

Usage: 
macOS
Hold down your Cmd key and scroll with your mouse to zoom in and out of the page.

Windows
Hold down the Windows key and scroll with your mouse to zoom in and out of the page. The browser also allows you to zoom by holding Ctrl and scrolling with your mouse wheel without this extension.

For more information see the website.                    

확장 프로그램 기본 정보

이름 Quick Zoom Quick Zoom
ID lgallnmjflibiofogpfalipjikgdaipb
공식 URL https://chromewebstore.google.com/detail/quick-zoom/lgallnmjflibiofogpfalipjikgdaipb
설명 Enables browser zoom with Cmd + mouse wheel
파일 크기 15.84 KB
설치 횟수 2,339
현재 버전 1.0.1
최근 업데이트 2020-12-24
출시 날짜 2020-11-01
평점 4.05/5 총 19 개의 평점
개발자 Tom Scott
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Silver292/quick-zoom
도움말 페이지 URL https://github.com/Silver292/quick-zoom/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Zoom",
    "version": "1.0.1",
    "description": "Enables browser zoom with Cmd + mouse wheel",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistant": "false"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [],
    "icons": {
        "16": "logo_16.png",
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "manifest_version": 2
}