Beyond Metric
An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.
Wat is Beyond Metric?
Beyond Metric is een Chrome-extensie ontwikkeld door Marian, en de belangrijkste functie is "An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.".
Extensie Screenshots
Download het CRX-bestand van de extensie Beyond Metric
Download Beyond Metric-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Beyond Metric |
ID | jlbjeogemnmeomfffhohoijmbhmgdlch |
Officiële URL | https://chromewebstore.google.com/detail/beyond-metric/jlbjeogemnmeomfffhohoijmbhmgdlch |
Beschrijving | An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method. |
Bestandsgrootte | 22.19 KB |
Aantal Installaties | 338 |
Huidige Versie | 1.1.0 |
Laatst Bijgewerkt | 2020-05-22 |
Publicatiedatum | 2020-05-21 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Marian |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |