Beyond Metric

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

O que é Beyond Metric?

Beyond Metric é uma extensão do Chrome desenvolvida por Marian, e sua principal característica é "An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Beyond Metric

Baixe arquivos de extensão Beyond Metric no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Beyond Metric Beyond Metric
ID jlbjeogemnmeomfffhohoijmbhmgdlch
URL Oficial https://chromewebstore.google.com/detail/beyond-metric/jlbjeogemnmeomfffhohoijmbhmgdlch
Descrição An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.
Tamanho do Arquivo 22.19 KB
Contagem de Instalações 338
Versão Atual 1.1.0
Última Atualização 2020-05-22
Data de Publicação 2020-05-21
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Marian
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}