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": "Mandarin Blueprint Prop Customizer",
"version": "1.1.0",
"description": "Create, save, and manage your own Mandarin Blueprint + Traverse props.",
"permissions": [
"storage",
"tabs",
"clipboardRead",
"clipboardWrite"
],
"background": {
"service_worker": "svc.bundle.js"
},
"action": {
"default_title": "(Click to show all mappings)",
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"icon32.png"
],
"matches": [
"https:\/\/courses.mandarinblueprint.com\/*",
"https:\/\/traverse.link\/*"
]
}
],
"content_scripts": [
{
"matches": [
"https:\/\/courses.mandarinblueprint.com\/*",
"https:\/\/traverse.link\/*"
],
"js": [
"main.bundle.js",
"vendors.bundle.js"
],
"run_at": "document_idle"
}
],
"icons": {
"32": "icon32.png"
}
}