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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Marian, και η κύρια λειτουργία του είναι "An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Beyond Metric

Λήψη αρχείων επέκτασης 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"
    }
}