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
O que é Measuring Box?
Measuring Box é uma extensão do Chrome desenvolvida por jonny_spry, e sua principal característica é "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 Tela da Extensão
Baixar o arquivo CRX da Extensão Measuring Box
Baixe arquivos de extensão Measuring Box no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
URL Oficial | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
Descrição | 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 |
Tamanho do Arquivo | 86.55 KB |
Contagem de Instalações | 115 |
Versão Atual | 1.0 |
Última Atualização | 2016-08-11 |
Data de Publicação | 2016-08-11 |
Classificação | 2.00/5 Total de 4 Avaliações |
Desenvolvedor | jonny_spry |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |