Ctrl Zoom
Ctrl + touchpad scroll to zoom
Ctrl Zoom là gì?
Ctrl Zoom là một tiện ích mở rộng Chrome được phát triển bởi Hempe, và tính năng chính của nó là "Ctrl + touchpad scroll to zoom".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Ctrl Zoom
Tải xuống các tệp mở rộng Ctrl Zoom dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Ctrl Zoom |
ID | indpmklmjbcfkbnbhoknlggplddednhp |
URL Chính Thức | https://chromewebstore.google.com/detail/ctrl-zoom/indpmklmjbcfkbnbhoknlggplddednhp |
Mô tả | Ctrl + touchpad scroll to zoom |
Kích Thước Tệp | 41.45 KB |
Số Lần Cài Đặt | 927 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2022-10-25 |
Ngày Phát Hành | 2019-11-26 |
Đánh Giá | 4.90/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | Hempe |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/hempe/ctrlZoom |
URL Trang Chính Sách Bảo Mật | https://github.com/hempe/ctrlZoom/blob/master/privacy-policy.md |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |