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
Vad är Measuring Box?
Measuring Box är en Chrome-tillägg utvecklad av jonny_spry, och dess huvudfunktion är "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".
Tilläggsskärmbilder
Ladda ner Measuring Box-förlängningens CRX-fil
Ladda ner Measuring Box-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
Officiell webbadress | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
Beskrivning | 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 |
Filstorlek | 86.55 KB |
Antal Installationer | 115 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2016-08-11 |
Publiceringsdatum | 2016-08-11 |
Betyg | 2.00/5 Totalt 4 Betyg |
Utvecklare | jonny_spry |
Betalningssätt | free |
Stödda Språk | 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" ] } |