Beyond Metric
An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.
Co to jest Beyond Metric?
Beyond Metric to rozszerzenie Chrome opracowane przez Marian, a jego główną funkcją jest „An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Beyond Metric
Pobierz pliki rozszerzeń Beyond Metric w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Beyond Metric |
ID | jlbjeogemnmeomfffhohoijmbhmgdlch |
Oficjalny URL | https://chromewebstore.google.com/detail/beyond-metric/jlbjeogemnmeomfffhohoijmbhmgdlch |
Opis | An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method. |
Rozmiar pliku | 22.19 KB |
Liczba instalacji | 338 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2020-05-22 |
Data Publikacji | 2020-05-21 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | Marian |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |