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
公式URL 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"
    }
}