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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Beyond Metric 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}