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
Cos'è Measuring Box?
Measuring Box è un'estensione di Chrome sviluppata da jonny_spry, e la sua funzione principale è "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".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Measuring Box
Scarica i file di estensione Measuring Box in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
URL Ufficiale | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
Descrizione | 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 |
Dimensione del File | 86.55 KB |
Conteggio Installazioni | 115 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2016-08-11 |
Data di Pubblicazione | 2016-08-11 |
Valutazione | 2.00/5 Totale 4 Valutazioni |
Sviluppatore | jonny_spry |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |