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文件

下載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
官方網址 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
}