Simple Ruler

This extension measures segments on the current tab and their slopes

什么是Simple Ruler?

Simple Ruler是由Pablo Henriquez开发的Chrome扩展程序,该扩展的主要功能是“This extension measures segments on the current tab and their slopes”。

扩展截图

screenshot
screenshot
screenshot

下载Simple Ruler扩展crx文件

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

扩展使用说明

                        Draw a segment on the tab to know its measure and inclination.
The segment creates a circle to know its radial measurement.                    

扩展基本信息

名称 Simple Ruler Simple Ruler
ID bekpjpnfkoiocohhkaphfoccjnhcgakm
官方URL https://chromewebstore.google.com/detail/simple-ruler/bekpjpnfkoiocohhkaphfoccjnhcgakm
简介 This extension measures segments on the current tab and their slopes
文件大小 50.76 KB
安装次数 72
当前版本 0.1
更新时间 2021-02-23
上架时间 2021-02-23
评分 4.00/5 共2次评分
开发者 Pablo Henriquez
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Ruler",
    "description": "This extension measures segments on the current tab and their slopes",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                ".\/styles.css"
            ],
            "js": [
                ".\/script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            ".\/background.js"
        ]
    },
    "icons": {
        "128": ".\/icon_128.png"
    },
    "browser_action": {
        "default_icon": ".\/icon_128.png"
    }
}