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