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 - Encounter EDIT+",
"version": "1.0.1",
"description": "Adds an EDIT+ button to D&D Beyond combat tracker: opens an embedded encounter editor; on Save, closes and refreshes.",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.dndbeyond.com\/*",
"https:\/\/dndbeyond.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.dndbeyond.com\/*",
"https:\/\/dndbeyond.com\/*"
]
}