D&D Beyond Custom Currency

A plugin for customising how currency appears on your character sheet on D&D Beyond.

D&D Beyond Custom Currency란 무엇입니까?

D&D Beyond Custom Currency은(는) goldengearsgames에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A plugin for customising how currency appears on your character sheet on D&D Beyond."입니다.

확장 프로그램 스크린샷

screenshot

D&D Beyond Custom Currency 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to customise how currency will appear on your character sheet on D&D Beyond. It allows you to change the image, name and conversion text for each currency and even hide unused currencies.
You can have as many custom currencies as you want for as many different characters as you want. All this information is also shared across all your devices where you have the extension installed, so the currency will always be correct.
You can export and import the currencies and what characters use those currencies, so that everyone in your party can quickly be using the custom currency.                    

확장 프로그램 기본 정보

이름 D&D Beyond Custom Currency D&D Beyond Custom Currency
ID ohkddhfkjmfjfhelmplbmhaehhoiabin
공식 URL https://chromewebstore.google.com/detail/dd-beyond-custom-currency/ohkddhfkjmfjfhelmplbmhaehhoiabin
설명 A plugin for customising how currency appears on your character sheet on D&D Beyond.
파일 크기 69.11 KB
설치 횟수 123
현재 버전 1.1
최근 업데이트 2020-10-21
출시 날짜 2020-10-20
평점 3.00/5 총 1 개의 평점
개발자 goldengearsgames
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "D&D Beyond Custom Currency",
    "version": "1.1",
    "description": "A plugin for customising how currency appears on your character sheet on D&D Beyond.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "downloads"
    ],
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/profile\/*\/characters\/*",
                "https:\/\/www.dndbeyond.com\/characters\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "management\/character\/characterForm.html?type=popup",
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "64": "images\/icon64.png"
        }
    },
    "options_page": "management\/options.html",
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}