Dungeon Tokens
An extension to deploy tokens and manage initiation
Cos'è Dungeon Tokens?
Dungeon Tokens è un'estensione di Chrome sviluppata da rameal.nabeeh, e la sua funzione principale è "An extension to deploy tokens and manage initiation".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Dungeon Tokens
Scarica i file di estensione Dungeon Tokens 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
As a dungeon master, I prefer using online maps and applications to make life easier so that I can focus on the players. I created this extension to assist player movement, conditions, and initiative within Dungeons & Dragons, regardless of the website I used for everything else (like worldbuilding and maps). If you have a favorite map building application but it's missing player tokens, or you just want to use an image file with overlaying tokens, then this extension is for you.
Informazioni di Base sull'Estensione
Nome | Dungeon Tokens |
ID | lchdninaaaephipekicpgbbckihhapmj |
URL Ufficiale | https://chromewebstore.google.com/detail/dungeon-tokens/lchdninaaaephipekicpgbbckihhapmj |
Descrizione | An extension to deploy tokens and manage initiation |
Dimensione del File | 240 KB |
Conteggio Installazioni | 33 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2023-02-28 |
Data di Pubblicazione | 2020-12-08 |
Sviluppatore | rameal.nabeeh |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Dungeon Tokens", "version": "1.1", "description": "An extension to deploy tokens and manage initiation", "icons": { "128": "\/Images\/icon128.png", "48": "\/Images\/icon48.png", "16": "\/Images\/icon16.png" }, "action": { "default_icon": { "16": "\/Images\/icon16.png", "48": "\/Images\/icon48.png", "128": "\/Images\/icon128.png" }, "default_popup": "\/HTML\/popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "\/Scripts\/jquery-3.4.1.min.js", "\/Scripts\/jquery-ui.min.js", "\/Scripts\/content.js", "\/Scripts\/kit.fontawesome.js" ], "css": [ "\/Styles\/styles.css" ] } ], "permissions": [ "activeTab", "storage", "tabs" ], "web_accessible_resources": [ { "resources": [ "\/Styles\/fileStyles.css", "\/Images\/copy.png", "\/Images\/group.png", "\/Images\/sync-alt.svg", "\/Images\/chained-heart.svg", "\/Images\/times-circle.svg", "\/Images\/compress-arrows-alt.svg", "\/Images\/expand-arrows-alt.svg", "\/Images\/InitiativeTimeline.svg" ], "matches": [ "*:\/\/*\/*" ] } ] } |