Bring the metric unit system to D&D Beyond!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Metric Beyond",
"description": "Bring the metric unit system to D&D Beyond!",
"version": "1.9.2",
"icons": {
"256": "images/Chrome_Metric_Beyond_256.png",
"512": "images/Chrome_Metric_Beyond_512.png"
},
"content_scripts": [
{
"js": [
"libs/purify.min.js",
"content.js"
],
"matches": [
"https://www.dndbeyond.com/characters/*",
"https://www.dndbeyond.com/monsters/*",
"https://www.dndbeyond.com/magic-items/*",
"https://www.dndbeyond.com/spells/*",
"https://www.dndbeyond.com/sources/*",
"https://www.dndbeyond.com/encounters/*",
"https://www.dndbeyond.com/combat-tracker/*"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"32": "images/toolbar_MB_32.png",
"38": "images/toolbar_MB_38.png",
"48": "images/toolbar_MB_48.png",
"72": "images/toolbar_MB_72.png"
}
},
"permissions": [
"storage"
]
}