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 - Condition Tags",
"version": "1.0.2",
"description": "Right-click combatants in D&D Beyond's Combat Tracker to set and display condition and tooltips.",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.dndbeyond.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.dndbeyond.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"condition\/*.png"
],
"matches": [
"https:\/\/www.dndbeyond.com\/*"
]
}
]
}