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 \u2013 Encounter Builder: Owned Only Filter",
"version": "1.2",
"description": "Adds an 'Owned only' checkbox to hide monsters you don't own in D&D Beyond encounters.",
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"action": {
"default_icon": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"default_title": "Owned Only Filter"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.dndbeyond.com\/*"
],
"js": [
"content_owned_filter.js"
],
"run_at": "document_idle",
"all_frames": true,
"match_about_blank": true
}
],
"permissions": []
}