Dungeon Tokens

An extension to deploy tokens and manage initiation

Dungeon Tokens là gì?

Dungeon Tokens là một tiện ích mở rộng Chrome được phát triển bởi rameal.nabeeh, và tính năng chính của nó là "An extension to deploy tokens and manage initiation".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dungeon Tokens

Tải xuống các tệp mở rộng Dungeon Tokens dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dungeon Tokens Dungeon Tokens
ID lchdninaaaephipekicpgbbckihhapmj
URL Chính Thức https://chromewebstore.google.com/detail/dungeon-tokens/lchdninaaaephipekicpgbbckihhapmj
Mô tả An extension to deploy tokens and manage initiation
Kích Thước Tệp 240 KB
Số Lần Cài Đặt 33
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-02-28
Ngày Phát Hành 2020-12-08
Nhà Phát Triển rameal.nabeeh
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}