/*
* LipSurf plugin for creating a new empty tab
*/
///
declare const PluginBase: IPluginBase;
export default {
...PluginBase,
...{
niceName: "New tab",
description: "Create a new empty tab.",
version: "4.10.0",
apiVersion: 2,
match: /.*/,
homophones: {
"open tab": "new tab",
},
authors: "Aparajita Fishman",
commands: [
{
name: "New tab",
description: "Create a new empty tab.",
global: true,
match: "new tab",
fn: async () => {
chrome.tabs.create({
active: true,
});
},
},
],
},
};