Zoomify
Load web pages at 100% zoom level for better experience.
什么是Zoomify?
Zoomify是由Rishabh Goel开发的Chrome扩展程序,该扩展的主要功能是“Load web pages at 100% zoom level for better experience.”。
扩展截图
下载Zoomify扩展crx文件
下载Zoomify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | elhgfighbokpcknobggmegijnpnefldk |
| 官方URL | https://chromewebstore.google.com/detail/zoomify/elhgfighbokpcknobggmegijnpnefldk |
| 简介 | Load web pages at 100% zoom level for better experience. |
| 文件大小 | 4.41 KB |
| 安装次数 | 126 |
| 当前版本 | 1.4 |
| 更新时间 | 2020-11-25 |
| 上架时间 | 2020-10-28 |
| 开发者 | Rishabh Goel |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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"
]
}
} | |