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

Wat is Measuring Box?

Measuring Box is een Chrome-extensie ontwikkeld door jonny_spry, en de belangrijkste functie is "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".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Measuring Box

Download Measuring Box-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Measuring Box Measuring Box
ID jciegdpdoijocnobdcmdhbagjncapdfh
Officiële URL https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh
Beschrijving 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
Bestandsgrootte 86.55 KB
Aantal Installaties 115
Huidige Versie 1.0
Laatst Bijgewerkt 2016-08-11
Publicatiedatum 2016-08-11
Beoordeling 2.00/5 Totaal 4 Beoordelingen
Ontwikkelaar jonny_spry
Betalingswijze free
Ondersteunde Talen 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"
    ]
}