Dungeon Tokens
An extension to deploy tokens and manage initiation
什么是Dungeon Tokens?
Dungeon Tokens是由rameal.nabeeh开发的Chrome扩展程序,该扩展的主要功能是“An extension to deploy tokens and manage initiation”。
扩展截图
下载Dungeon Tokens扩展crx文件
下载Dungeon Tokens扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | lchdninaaaephipekicpgbbckihhapmj |
| 官方URL | https://chromewebstore.google.com/detail/dungeon-tokens/lchdninaaaephipekicpgbbckihhapmj |
| 简介 | An extension to deploy tokens and manage initiation |
| 文件大小 | 240 KB |
| 安装次数 | 33 |
| 当前版本 | 1.1 |
| 更新时间 | 2023-02-28 |
| 上架时间 | 2020-12-08 |
| 开发者 | rameal.nabeeh |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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": [
"*:\/\/*\/*"
]
}
]
} | |