Beyond Dice Tray
Adds a Dice Tray to DnDBeyond
Cos'è Beyond Dice Tray?
Beyond Dice Tray è un'estensione di Chrome sviluppata da Azmoria, e la sua funzione principale è "Adds a Dice Tray to DnDBeyond".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Beyond Dice Tray
Scarica i file di estensione Beyond Dice Tray in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Adds a dice tray to DnDBeyond to use for streaming, virtual cameras or on tv tables. With a customizable background that can be green screened.
(Dice speed no longer functions and has been removed) Informazioni di Base sull'Estensione
| Nome | |
| ID | endcocbbbeihjgkcpopkkldchjfhjagn |
| URL Ufficiale | https://chromewebstore.google.com/detail/beyond-dice-tray/endcocbbbeihjgkcpopkkldchjfhjagn |
| Descrizione | Adds a Dice Tray to DnDBeyond |
| Dimensione del File | 85.8 KB |
| Conteggio Installazioni | 204 |
| Versione Corrente | 0.11 |
| Ultimo Aggiornamento | 2023-10-09 |
| Data di Pubblicazione | 2023-02-08 |
| Valutazione | 3.00/5 Totale 1 Valutazioni |
| Sviluppatore | Azmoria |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Azmoria/DnDBeyond-Dice-Tray |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Beyond Dice Tray",
"description": "Adds a Dice Tray to DnDBeyond",
"version": "0.11",
"content_scripts": [
{
"matches": [
"https:\/\/www.dndbeyond.com\/*encounter*",
"https:\/\/www.dndbeyond.com\/*characters*",
"https:\/\/www.dndbeyond.com\/*combat*"
],
"js": [
"Load.js",
"content.js",
"jquery-3.6.0.min.js"
],
"all_frames": true
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"web_accessible_resources": [
{
"resources": [
"jquery-3.6.0.min.js",
"diceTray.css",
"content.js",
"main.js"
],
"matches": [
"https:\/\/www.dndbeyond.com\/*"
]
}
],
"action": {
"default_popup": "options.html"
}
} | |