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