Measuring Box
On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is
什么是Measuring Box?
Measuring Box是由jonny_spry开发的Chrome扩展程序,该扩展的主要功能是“On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is”。
扩展截图
下载Measuring Box扩展crx文件
下载Measuring Box扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Use the mouse to click and drag over an area of the webpage to measure the content underneath. This also tells you what the aspect ratio is.
扩展基本信息
名称 | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
官方URL | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
简介 | On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is |
文件大小 | 86.55 KB |
安装次数 | 115 |
当前版本 | 1.0 |
更新时间 | 2016-08-11 |
上架时间 | 2016-08-11 |
评分 | 2.00/5 共4次评分 |
开发者 | jonny_spry |
付费类型 | free |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Measuring Box", "description": "On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is", "version": "1.0", "browser_action": { "default_icon": "box.png", "default_title": "icon" }, "background": { "scripts": [ "bg.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.js", "contentScript.js" ] } ], "permissions": [ "activeTab" ] } |