MeasureIt!

MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.

什么是MeasureIt!?

MeasureIt!是由Online Apps开发的Chrome扩展程序,该扩展的主要功能是“MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.”。

扩展截图

screenshot

下载MeasureIt!扩展crx文件

下载MeasureIt!扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        MeasureIt shows positioning and dimensions in pixel points. You can measure height and width of elements on web page.

HOW IT WORKS 
• Click to the icon of app on the current web page.  
• Draw ruler page and shows width, height, positioning of element.
• Click the icon again to exit the measurement.                    

扩展基本信息

名称 MeasureIt! MeasureIt!
ID keoagpbljgpdoldcmfpgicnpijmfompi
官方URL https://chromewebstore.google.com/detail/measureit/keoagpbljgpdoldcmfpgicnpijmfompi
简介 MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.
文件大小 103 KB
安装次数 12,336
当前版本 1.2.4
更新时间 2022-10-05
上架时间 2020-06-13
评分 1.97/5 共37次评分
开发者 Online Apps
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "jquery.min.js",
            "backgroundMeasureIt.js"
        ]
    },
    "browser_action": {
        "default_icon": "off.png",
        "default_title": "MeasureIt"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "styleMeasureIt.css"
            ],
            "js": [
                "measureIt.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.",
    "manifest_version": 2,
    "name": "MeasureIt!",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "version": "1.2.4",
    "icons": {
        "48": "ico_48.png",
        "128": "ico_128.png"
    }
}