Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "DDB - Monster ticker (Counters)",
"version": "1.0.2",
"description": "Adds a compact counter panel to monster stat blocks for per-day abilities, spell slots, and legendary actions (auto-refill).",
"permissions": [
"storage"
],
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"action": {
"default_title": "DDB Monster Uses",
"default_icon": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/www.dndbeyond.com\/combat-tracker\/*"
],
"js": [
"content_monster_uses.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
]
}