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
Qu'est-ce que Measuring Box ?
Measuring Box est une extension Chrome développée par jonny_spry, et sa fonction principale est "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".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Measuring Box
Téléchargez les fichiers d'extension Measuring Box au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
URL Officiel | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
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 |
Taille du Fichier | 86.55 KB |
Nombre d'Installations | 115 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2016-08-11 |
Date de Publication | 2016-08-11 |
Évaluation | 2.00/5 Total 4 Évaluations |
Développeur | jonny_spry |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |