Zoomify
Load web pages at 100% zoom level for better experience.
Zoomify là gì?
Zoomify là một tiện ích mở rộng Chrome được phát triển bởi Rishabh Goel, và tính năng chính của nó là "Load web pages at 100% zoom level for better experience.".
Ả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 Zoomify
Tải xuống các tệp mở rộng Zoomify 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
Load web pages at 100% zoom level for a particular domain. For users of the domain, application would be loaded at 100% zoom level resulting in better customer experience.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Zoomify |
ID | elhgfighbokpcknobggmegijnpnefldk |
URL Chính Thức | https://chromewebstore.google.com/detail/zoomify/elhgfighbokpcknobggmegijnpnefldk |
Mô tả | Load web pages at 100% zoom level for better experience. |
Kích Thước Tệp | 4.41 KB |
Số Lần Cài Đặt | 126 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2020-11-25 |
Ngày Phát Hành | 2020-10-28 |
Nhà Phát Triển | Rishabh Goel |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Zoomify", "version": "1.4", "description": "Load web pages at 100% zoom level for better experience.", "externally_connectable": { "matches": [ "*:\/\/*.hex.a2z.com\/board\/*" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.hex.a2z.com\/board\/*" ], "js": [ "prezoomify.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.hex.a2z.com\/board\/*" ], "js": [ "postzoomify.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] } } |