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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย goldengearsgames และคุณลักษณะหลักของมันคือ "A plugin for customising how currency appears on your character sheet on D&D Beyond."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย D&D Beyond Custom Currency

ดาวน์โหลดไฟล์ส่วนขยาย D&D Beyond Custom Currency ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}