Ctrl Zoom
Ctrl + touchpad scroll to zoom
什麼是Ctrl Zoom?
Ctrl Zoom是由Hempe開發的Chrome擴展程式,該擴展的主要功能是“Ctrl + touchpad scroll to zoom”。
擴展截圖
下載Ctrl Zoom擴展crx文件
下載Ctrl Zoom擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        This extension adds back the Ctrl + scroll zoom for touchpads.
The reason this extension exists, is that ctrl + touchpad scroll zooming was removed from Chrome, and the "Bug" is marked as WontFix (https://bugs.chromium.org/p/chromium/issues/detail?id=878694).                     擴展基本資訊
| 名稱 |  | 
| ID | indpmklmjbcfkbnbhoknlggplddednhp | 
| 官方網址 | https://chromewebstore.google.com/detail/ctrl-zoom/indpmklmjbcfkbnbhoknlggplddednhp | 
| 簡介 | Ctrl + touchpad scroll to zoom | 
| 檔案大小 | 41.45 KB | 
| 安裝次數 | 927 | 
| 目前版本 | 1.5 | 
| 更新時間 | 2022-10-25 | 
| 上架時間 | 2019-11-26 | 
| 評分 | 4.90/5 共 10 次評分 | 
| 開發者 | Hempe | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 擴展官網 | https://github.com/hempe/ctrlZoom | 
| 隱私政策頁面URL | https://github.com/hempe/ctrlZoom/blob/master/privacy-policy.md | 
| 支援的語言 | en | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ctrl Zoom",
    "version": "1.5",
    "description": "Ctrl + touchpad scroll to zoom",
    "homepage_url": "https:\/\/github.com\/hempe\/ctrlZoom",
    "author": "hempe",
    "short_name": "ctrlZoom",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "js\/popup.js",
                "js\/ctrlZoom.js"
            ]
        }
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_popup": "options.html",
        "default_title": "ChromiePop"
    }
} | |