Beyond Metric

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

Co je Beyond Metric?

Beyond Metric je rozšíření Chrome vyvinuté Marian, a jeho hlavní funkcí je „An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Beyond Metric

Stáhněte si soubory rozšíření Beyond Metric ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Beyond Metric Beyond Metric
ID jlbjeogemnmeomfffhohoijmbhmgdlch
Oficiální URL https://chromewebstore.google.com/detail/beyond-metric/jlbjeogemnmeomfffhohoijmbhmgdlch
Popis An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.
Velikost souboru 22.19 KB
Počet instalací 338
Aktuální Verze 1.1.0
Poslední Aktualizace 2020-05-22
Datum Vydání 2020-05-21
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář Marian
Typ Platby free
Podporované Jazyky 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"
    }
}