Zoomba
Customizable zoom increment.
什么是Zoomba?
Zoomba是由appdevsw开发的Chrome扩展程序,该扩展的主要功能是“Customizable zoom increment.”。
扩展截图
下载Zoomba扩展crx文件
下载Zoomba扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Zoomba is an extension, which allows you to set a zoom increment and assign it to different keys or mouse wheel actions. You can use several keys and wheel combinations to set different zoom steps.
扩展基本信息
名称 | Zoomba |
ID | oifpkclgpipladdnaioaehmmccmljblh |
官方URL | https://chromewebstore.google.com/detail/zoomba/oifpkclgpipladdnaioaehmmccmljblh |
简介 | Customizable zoom increment. |
文件大小 | 16.34 KB |
安装次数 | 1,484 |
当前版本 | 1.2.1 |
更新时间 | 2019-09-17 |
上架时间 | 2019-09-17 |
评分 | 4.45/5 共29次评分 |
开发者 | appdevsw |
付费类型 | free |
扩展官网 | https://github.com/appdevsw/zoomba |
帮助页面URL | https://github.com/appdevsw/zoomba/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Zoomba", "short_name": "Zoomba", "description": "Customizable zoom increment.", "version": "1.2.1", "author": "[email protected]", "browser_action": { "default_title": "Zoomba", "default_popup": "popup.html" }, "options_page": "popup.html", "background": { "persistent": false, "scripts": [ "common.js", "settings.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "common.js", "keyboard.js", "content.js" ], "all_frames": false } ], "icons": { "128": "loupe128.png" }, "content_security_policy": "script-src 'self'; object-src 'self';", "permissions": [ "storage", "tabs", "management", "https:\/\/*\/*", "http:\/\/*\/*" ] } |