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
What is Measuring Box?
Measuring Box is a Chrome extension developed by jonny_spry, and its main feature is "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".
Extension Screenshots
Download Measuring Box Extension CRX File
Download Measuring Box extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
Official URL | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
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 |
File Size | 86.55 KB |
Installation Count | 115 |
Current Version | 1.0 |
Last Updated | 2016-08-11 |
Publish Date | 2016-08-11 |
Rating | 2.00/5 Total 4 Ratings |
Developer | jonny_spry |
Payment Type | free |
Supported Languages | 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" ] } |