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是由Marian开发的Chrome扩展程序,该扩展的主要功能是“An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.”。
扩展截图
下载Beyond Metric扩展crx文件
下载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 |
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" } } |