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
官方網址 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"
        }
    ]
}