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開發的Chrome擴展程式,該擴展的主要功能是“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

下載Measuring Box擴展crx文件

下載Measuring Box擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}