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
Co je Measuring Box?
Measuring Box je rozšíření Chrome vyvinuté jonny_spry, a jeho hlavní funkcí je „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“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Measuring Box
Stáhněte si soubory rozšíření Measuring Box ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
Oficiální URL | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
Popis | 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 |
Velikost souboru | 86.55 KB |
Počet instalací | 115 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2016-08-11 |
Datum Vydání | 2016-08-11 |
Hodnocení | 2.00/5 Celkem 4 Hodnocení |
Vývojář | jonny_spry |
Typ Platby | free |
Podporované Jazyky | 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" ] } |