'link' | Koreader Plugins
local _ = require("gettext") return { name = "helloworld", fullname = _("Hello World"), description = _("A minimal plugin that shows a greeting."), }
Have a favorite KOReader plugin we didn’t mention? Join the discussion on MobileRead’s KOReader forum or open an issue on the KOReader GitHub repository—the community always welcomes new ideas and contributors. koreader plugins
function HelloWorld:init() self:addToMainMenu(self.name) end local _ = require("gettext") return { name =
return HelloWorld