MouseZoom

Zoom in and out with the right mouse button and left click or wheel.

MouseZoom란 무엇입니까?

MouseZoom은(는) https://www.meyerk.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Zoom in and out with the right mouse button and left click or wheel."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This is an extension for zooming with the right mouse button and the scroll wheel. Right mouse button + left mouse button snap-zoom functionality is also available.

*** FINALLY *** Chrome offers an official Zoom-API and starting with version 0.2.0, MouseZoom for Chrome is using it. Zooming should now be almost as enjoyable as on Firefox.

In case you're wondering: The "OSD", present in former versions of MouseZoom, has been removed. Instead, Chrome shows an "info bubble" that displays the current zoom level while zooming. Also, Chrome does not support changing the buit-in zoom-levels, so the option for changing those had to be removed as well.                    

확장 프로그램 기본 정보

이름 MouseZoom MouseZoom
ID amdjnhbhdjpkbnjkmnpooebpfcgejahe
공식 URL https://chromewebstore.google.com/detail/mousezoom/amdjnhbhdjpkbnjkmnpooebpfcgejahe
설명 Zoom in and out with the right mouse button and left click or wheel.
파일 크기 58.15 KB
설치 횟수 1,892
현재 버전 0.2.1
최근 업데이트 2015-08-30
출시 날짜 2015-08-30
평점 3.68/5 총 57 개의 평점
개발자 https://www.meyerk.com
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MouseZoom",
    "version": "0.2.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Zoom in and out with the right mouse button and left click or wheel.",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "MouseZoom",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "options.model.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}