D&D Beyond Campaign DM Screen
DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen.
Cos'è D&D Beyond Campaign DM Screen?
D&D Beyond Campaign DM Screen è un'estensione di Chrome sviluppata da ashdevfr, e la sua funzione principale è "DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione D&D Beyond Campaign DM Screen
Scarica i file di estensione D&D Beyond Campaign DM Screen 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
This extension extends the D&D Beyond's campaign page to turn it into a DM screen. In the campaign page of D&D Beyond and it will add for each characters their stats such as: - AC - HP - Initiative bonus - Saving throws - Passive checks
Informazioni di Base sull'Estensione
Nome | D&D Beyond Campaign DM Screen |
ID | oiajbaepngjfcgimlkaedfkdjkklkfhh |
URL Ufficiale | https://chromewebstore.google.com/detail/dd-beyond-campaign-dm-scr/oiajbaepngjfcgimlkaedfkdjkklkfhh |
Descrizione | DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen. |
Dimensione del File | 296 KB |
Conteggio Installazioni | 13,115 |
Versione Corrente | 1.2.4 |
Ultimo Aggiornamento | 2022-07-26 |
Data di Pubblicazione | 2020-06-24 |
Valutazione | 4.00/5 Totale 30 Valutazioni |
Sviluppatore | ashdevfr |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "D&D Beyond Campaign DM Screen", "version": "1.2.4", "description": "DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen.", "manifest_version": 2, "icons": { "16": "assets\/icon-16x16.png", "32": "assets\/icon-32x32.png", "128": "assets\/icon-128x128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "D&D Beyond Campaign DM Screen", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.dndbeyond.com\/campaigns\/*", "http:\/\/www.dndbeyond.com\/campaigns\/*" ], "js": [ "content.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |