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 - GM Player Inventory Manager",
"version": "1.0.2",
"description": "GM button to open a character\u2019s Inventory Manager in a clean kiosk window. Caches campaigns\/characters from D&D Beyond.",
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.dndbeyond.com\/*",
"https:\/\/dndbeyond.com\/*"
],
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/www.dndbeyond.com\/my-campaigns*",
"https:\/\/dndbeyond.com\/my-campaigns*",
"https:\/\/www.dndbeyond.com\/campaigns\/*",
"https:\/\/dndbeyond.com\/campaigns\/*"
],
"js": [
"content_campaign_scrape.js"
],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": [
"https:\/\/www.dndbeyond.com\/*",
"https:\/\/dndbeyond.com\/*"
],
"js": [
"content_gm.js"
],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": [
"https:\/\/www.dndbeyond.com\/characters\/*",
"https:\/\/dndbeyond.com\/characters\/*"
],
"css": [
"kiosk.css"
],
"js": [
"content_kiosk.js"
],
"run_at": "document_idle",
"all_frames": true
}
]
}