ZoomR
Zoom in on articles.
什么是ZoomR?
ZoomR是由David Altmayer开发的Chrome扩展程序,该扩展的主要功能是“Zoom in on articles.”。
扩展截图
下载ZoomR扩展crx文件
下载ZoomR扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
ZoomR enables you to zoom in on columns on websites. Simply right-click on the column (for example, on a news article) and click "Zoom Here". To zoom out, you can right-click again and click "Unzoom". Technical: Essentially, this just calculates the zoom required to make the HTML element that was right-clicked be the full width of the screen (-10% so nothing gets cut off). This requires Chrome version 39 (current dev channel).
扩展基本信息
名称 | ![]() |
ID | jgmpfcpmgehgmeodlemlnnbpcdokboca |
官方URL | https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca |
简介 | Zoom in on articles. |
文件大小 | 4.1 KB |
安装次数 | 82 |
当前版本 | 0.1.5 |
更新时间 | 2014-09-19 |
上架时间 | 2014-09-19 |
评分 | 1.00/5 共1次评分 |
开发者 | David Altmayer |
付费类型 | free |
扩展官网 | https://github.com/dhaltmayer/ZoomR |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ZoomR", "version": "0.1.5", "author": "David H. Altmayer", "minimum_chrome_version": "39", "description": "Zoom in on articles.", "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "contextMenus" ] } |