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.
Co to jest D&D Beyond Campaign DM Screen?
D&D Beyond Campaign DM Screen to rozszerzenie Chrome opracowane przez ashdevfr, a jego główną funkcją jest „DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia D&D Beyond Campaign DM Screen
Pobierz pliki rozszerzeń D&D Beyond Campaign DM Screen w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | oiajbaepngjfcgimlkaedfkdjkklkfhh |
| Oficjalny URL | https://chromewebstore.google.com/detail/dd-beyond-campaign-dm-scr/oiajbaepngjfcgimlkaedfkdjkklkfhh |
| Opis | DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen. |
| Rozmiar pliku | 296 KB |
| Liczba instalacji | 13,115 |
| Aktualna Wersja | 1.2.4 |
| Ostatnia Aktualizacja | 2022-07-26 |
| Data Publikacji | 2020-06-24 |
| Ocena | 4.00/5 Łącznie 30 Oceny |
| Deweloper | ashdevfr |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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'"
} | |