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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A plugin for customising how currency appears on your character sheet on D&D Beyond."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में D&D Beyond Custom Currency एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } |