Beyond Metric

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

Vad är Beyond Metric?

Beyond Metric är en Chrome-tillägg utvecklad av Marian, och dess huvudfunktion är "An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Beyond Metric-förlängningens CRX-fil

Ladda ner Beyond Metric-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Beyond Metric Beyond Metric
ID jlbjeogemnmeomfffhohoijmbhmgdlch
Officiell webbadress https://chromewebstore.google.com/detail/beyond-metric/jlbjeogemnmeomfffhohoijmbhmgdlch
Beskrivning An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.
Filstorlek 22.19 KB
Antal Installationer 338
Aktuell Version 1.1.0
Senast Uppdaterad 2020-05-22
Publiceringsdatum 2020-05-21
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Marian
Betalningssätt free
Stödda Språk 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"
    }
}