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
¿Qué es Measuring Box?
Measuring Box es una extensión de Chrome desarrollada por jonny_spry, y su función principal es "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".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Measuring Box
Descarga archivos de extensión Measuring Box en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
URL Oficial | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
Descripción | 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 |
Tamaño del Archivo | 86.55 KB |
Cantidad de Instalaciones | 115 |
Versión Actual | 1.0 |
Última Actualización | 2016-08-11 |
Fecha de Publicación | 2016-08-11 |
Calificación | 2.00/5 Total de 4 Calificaciones |
Desarrollador | jonny_spry |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |