Beyond Metric

An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.

什麼是Beyond Metric?

Beyond Metric是由Marian開發的Chrome擴展程式,該擴展的主要功能是“An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Beyond Metric擴展crx文件

下載Beyond Metric擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Converts measurements in D&D Beyond character sheets and monster stats from imperial to metric.

BeyondMetric converts measurements on D&D Beyond from imperial to metric using the method proposed by Matthew Roy in Metric & Magic: The Metric System and 5e. 

This extension is open source and you can find it on GitHub: https://github.com/bmarian/beyondMetric                    

擴展基本資訊

名稱 Beyond Metric Beyond Metric
ID jlbjeogemnmeomfffhohoijmbhmgdlch
官方網址 https://chromewebstore.google.com/detail/beyond-metric/jlbjeogemnmeomfffhohoijmbhmgdlch
簡介 An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.
檔案大小 22.19 KB
安裝次數 338
目前版本 1.1.0
更新時間 2020-05-22
上架時間 2020-05-21
評分 5.00/5 共 4 次評分
開發者 Marian
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Beyond Metric",
    "short_name": "BM",
    "description": "An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.",
    "version": "1.1.0",
    "icons": {
        "128": "images\/logo.png"
    },
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.dndbeyond.com\/*characters\/*"
            ],
            "js": [
                "scripts\/Utils.js",
                "scripts\/CharacterSheet.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.dndbeyond.com\/monsters\/*"
            ],
            "js": [
                "scripts\/Utils.js",
                "scripts\/MonsterStats.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "images\/logo.png"
    }
}