/// declare const PluginBase: IPluginBase; export default { ...PluginBase, ...{ niceName: "Gmail", match: /^https:\/\/mail\.google\.com/, version: "1.0.0", apiVersion: 2, commands: [ { name: "Move to Folder", description: "Move already selected emails to a spoken folder", match: { description: 'Say "move to [folder name]"', fn: (transcript) => { // exercise left to the reader... }, }, pageFn: () => { // exercise left to the reader... }, }, ], }, };