ShahriarAbidbd/SmartifyXBotPublic · Bot Template
Do Tasks Smartly with SmartifyX 😎
Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
commands/menu_extra.js
javascript · 28 lines
1/**#command2name: menu_extra3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12Api.editMessageText({13 text: `*1. /ss:* Website Screenshot 14*2. /ip:* IP information 15*3. /img:* Upload Image into ImgBB`,16 chat_id: chat.id,17 message_id: request.message.message_id,18parse_mode: "markdown",19 reply_markup: {20 inline_keyboard: [21 [{22 text: "Back",23 callback_data: "main_menu",24 style: "danger"25 }]26 ]27 }28})