|
|
|
@ -179,6 +179,17 @@ export class RemixAppManager extends PluginEngine { |
|
|
|
|
icon: 'https://image.flaticon.com/icons/svg/1570/1570493.svg', |
|
|
|
|
location: 'sidePanel' |
|
|
|
|
} |
|
|
|
|
const debugPlugin = { |
|
|
|
|
name: 'debugPlugin', |
|
|
|
|
displayName: 'Debug Tools for Remix plugins', |
|
|
|
|
description: 'Easily test and debug your plugins !', |
|
|
|
|
methods: ['sayHello', 'sayMyName', 'sayOurNames'], // test calls with 0, 1, and 2 args
|
|
|
|
|
events: [], |
|
|
|
|
version: '0.1.0-alpha', |
|
|
|
|
url: 'https://remix-debug-a.surge.sh', |
|
|
|
|
icon: 'https://remix-debug-a.surge.sh/icon.png', |
|
|
|
|
location: 'sidePanel' |
|
|
|
|
} |
|
|
|
|
const libraTools = { |
|
|
|
|
name: 'libratools', |
|
|
|
|
displayName: 'Libra and Move Tools', |
|
|
|
@ -198,6 +209,7 @@ export class RemixAppManager extends PluginEngine { |
|
|
|
|
new IframePlugin(provable), |
|
|
|
|
new IframePlugin(threeBox), |
|
|
|
|
new IframePlugin(remixWorkshop), |
|
|
|
|
new IframePlugin(debugPlugin), |
|
|
|
|
new IframePlugin(libraTools) |
|
|
|
|
] |
|
|
|
|
} |
|
|
|
|