super-productivity/packages/plugin-dev/yesterday-tasks-plugin/plugin.js
felix bear d844559c6f
fix(plugins): translate yesterday tasks plugin #5103 (#8146)
Co-authored-by: cocojojo5213 <cocojojo5213@users.noreply.github.com>
2026-06-09 14:55:05 +02:00

10 lines
267 B
JavaScript

console.log("Yesterday's Tasks Plugin loaded");
// Register a keyboard shortcut
PluginAPI.registerShortcut({
id: 'show_yesterday',
label: PluginAPI.translate('SHORTCUT.SHOW_YESTERDAY_TASKS'),
onExec: function () {
PluginAPI.showIndexHtmlAsView();
},
});