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

Measuring Box क्या है?

Measuring Box jonny_spry द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Measuring Box एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Measuring Box Measuring Box
ID jciegdpdoijocnobdcmdhbagjncapdfh
आधिकारिक URL https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh
विवरण 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
फ़ाइल का आकार 86.55 KB
स्थापना संख्या 115
वर्तमान संस्करण 1.0
अंतिम अपडेट 2016-08-11
प्रकाशन तिथि 2016-08-11
रेटिंग 2.00/5 कुल 4 रेटिंग्स
डेवलपर jonny_spry
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}