manifest.json•888 B
{
"manifest_version": 3,
"name": "PlayCanvas Editor MCP Extension",
"description": "This extension allows the MCP Server to communicate with the PlayCanvas Editor.",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"version": "1.0",
"permissions": ["activeTab"],
"action": {
"default_popup": "popup.html"
},
"host_permissions": ["http://playcanvas.com/*", "https://playcanvas.com/*"],
"content_scripts": [
{
"matches": ["http://playcanvas.com/editor*", "https://playcanvas.com/editor*"],
"js": ["main.js"],
"world": "MAIN"
},
{
"matches": ["http://playcanvas.com/editor*", "https://playcanvas.com/editor*"],
"js": ["isolated.js"],
"world": "ISOLATED"
}
]
}