Measurements units converter
Measurement system convert tool
什麼是Measurements units converter?
Measurements units converter是由viktorpatraboi開發的Chrome擴展程式,該擴展的主要功能是“Measurement system convert tool”。
擴展截圖
下載Measurements units converter擴展crx文件
下載Measurements units converter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        Plugin for automatic conversion of measurements units from the metric system to imperial and vice versa.
Converts units in page automatically.
Supports converting the following:
- length(metric <-> imperial)
- weight(metric <-> imperial)
- temperature(Celsius <-> Fahrenheit)
- volume (metric <-> imperial)                     擴展基本資訊
| 名稱 |  | 
| ID | ldnkgcpeljjhpfkpapknhjhnninfelga | 
| 官方網址 | https://chromewebstore.google.com/detail/measurements-units-conver/ldnkgcpeljjhpfkpapknhjhnninfelga | 
| 簡介 | Measurement system convert tool | 
| 檔案大小 | 15.53 KB | 
| 安裝次數 | 19 | 
| 目前版本 | 0.1 | 
| 更新時間 | 2023-07-10 | 
| 上架時間 | 2022-02-13 | 
| 開發者 | viktorpatraboi | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 說明頁面URL | https://github.com/okedo | 
| 支援的語言 | en-US | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Measurements units converter",
    "description": "Measurement system convert tool",
    "version": "0.1",
    "manifest_version": 3,
    "icons": {
        "16": ".\/assets\/icon16.png",
        "48": ".\/assets\/icon48.png",
        "128": ".\/assets\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
} | |