Measure It

Minimal and reliable ruler for developers

什么是Measure It?

Measure It是由robert-ryu7开发的Chrome扩展程序,该扩展的主要功能是“Minimal and reliable ruler for developers”。

下载Measure It扩展crx文件

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

扩展使用说明

                                            

扩展基本信息

名称 Measure It Measure It
ID kophailholgnnmilkompdbabehgglpij
官方URL https://chrome.google.com/webstore/detail/measure-it/kophailholgnnmilkompdbabehgglpij
简介 Minimal and reliable ruler for developers
文件大小 7.01 KB
安装次数 323
当前版本 1.0.0
更新时间 2018-03-19
上架时间 2018-03-19
评分 3.33/5 共3次评分
开发者 robert-ryu7
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Measure It",
    "description": "Minimal and reliable ruler for developers",
    "version": "1.0.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "foreground.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": "icons8-ruler-48-bw.png"
    },
    "icons": {
        "48": "icons8-ruler-48.png"
    },
    "permissions": [
        "tabs"
    ]
}