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
Was ist Measuring Box?
Measuring Box ist eine Chrome-Erweiterung, die von jonny_spry entwickelt wurde, und ihr Hauptmerkmal ist "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".
Erweiterungsscreenshots
Measuring Box-Erweiterungs-CRX-Datei herunterladen
Laden Sie Measuring Box-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
Offizielle URL | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
Beschreibung | 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 |
Dateigröße | 86.55 KB |
Installationsanzahl | 115 |
Aktuelle Version | 1.0 |
Letztes Update | 2016-08-11 |
Veröffentlichungsdatum | 2016-08-11 |
Bewertung | 2.00/5 Insgesamt 4 Bewertungen |
Entwickler | jonny_spry |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |