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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย Measuring Box

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    ]
}