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 | 
| 官方URL | 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"
    }
} | |