Gmail Canned Response Manager
Free to download on every platform. Comes pre-installed on BotFone, BotPad and BotFlip — with extra free apps included.
About this app
WHAT IT DOES
Gmail Canned Response Manager is a floating panel that stores and manages canned responses for Gmail. Create responses with a name and content. Edit or delete existing responses. Search through your responses by name or content. Click a response to insert it directly into the Gmail compose window, or use the "Copy" button to copy it to your clipboard. This saves time when writing repetitive email replies in Gmail.
WHERE IT RUNS
This script runs on Gmail (https://mail.google.com/*). It reads only the page you are looking at, never other tabs, bookmarks, or browser data. All data stays in your browser — nothing is sent anywhere.
HOW TO USE
Open Gmail and start composing a new message. Click the Gmail Canned Response Manager panel button in the BotGentz extension toolbar. The panel appears at the edge of the page. To create a response, enter a name and content, then click "Save". To use a response, click it — it inserts into the compose window automatically. Use the "Copy" button to copy without inserting. Search responses using the search box. Edit or delete responses using the buttons on each response. Import/export responses for backup or sharing.
TECHNICAL MECHANISM
Responses are stored as an array of objects with name and content properties, persisted using GM_setValue and restored with GM_getValue. Clicking a response finds the Gmail compose field using selectors for contenteditable elements ([contenteditable="true"][role="textbox"], .Am.Al.editable, .editable, etc.) with a fallback that finds any visible contenteditable div. It then inserts the response content at the cursor position using document.execCommand('insertText') and dispatches input events to trigger Gmail's reactivity. If no compose field is found, it copies to clipboard using GM_setClipboard. The search filters responses by name or content in real time.
THE PANEL
The panel is a floating overlay that you can drag anywhere on the screen by its header. It remembers its position per site so it reappears where you left it. The panel can be collapsed into a small handle to get it out of the way, and snapped to the edge of the page. It can be resized to fit your workflow. Press Escape to close the panel.
PLEASE NOTE
This script requires the free BotGentz extension to run. All data stays in your browser — nothing is transmitted or shared. The script runs on mail.google.com and inserts text into the compose window if you have one open. Gmail's interface may change — the script may need updates to match new selectors.