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
Hvad er Measuring Box?
Measuring Box er en Chrome-udvidelse udviklet af jonny_spry, og dens hovedfunktion er "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".
Udvidelsesskærmbilleder
Download Measuring Box-udvidelses-CRX-fil
Download Measuring Box-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
Officiel URL | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
Beskrivelse | 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 |
Filstørrelse | 86.55 KB |
Antal Installationer | 115 |
Nuværende Version | 1.0 |
Senest Opdateret | 2016-08-11 |
Udgivelsesdato | 2016-08-11 |
Bedømmelse | 2.00/5 Samlet 4 Bedømmelser |
Udvikler | jonny_spry |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |