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ファイルをダウンロード

MouseZoom拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    ]
}