Beyond Metric
An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.
Beyond Metric là gì?
Beyond Metric là một tiện ích mở rộng Chrome được phát triển bởi Marian, và tính năng chính của nó là "An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Beyond Metric
Tải xuống các tệp mở rộng Beyond Metric dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Beyond Metric |
ID | jlbjeogemnmeomfffhohoijmbhmgdlch |
URL Chính Thức | https://chromewebstore.google.com/detail/beyond-metric/jlbjeogemnmeomfffhohoijmbhmgdlch |
Mô tả | An extension for dndbeyond that converts the measurements on the website in the metric system using Matthew Roy's method. |
Kích Thước Tệp | 22.19 KB |
Số Lần Cài Đặt | 338 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2020-05-22 |
Ngày Phát Hành | 2020-05-21 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Marian |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |