⚠️Below average rating ✅Recently updated
Description
【Detailed Description】
■ Overview
Send to Gemini is a Chrome extension that automatically fills and submits prompts to Google Gemini using URL parameters.
■ Key Features
✓ Auto-fill prompts from URL parameters
✓ JavaScript API for external integration
✓ Context menu to send selected text to Gemini
✓ Large prompt support
■ How to Use
【Basic Usage】
Simply add the `?prompt=` parameter to the Gemini Chat URL.
Example:
https://gemini.google.com/app?prompt=Tell me about AI
When you access this URL, the prompt "Tell me about AI" will be automatically filled and submitted.
【Disable Auto-Submit】
To fill the prompt without automatically submitting it, add `autosubmit=false`.
Example:
https://gemini.google.com/app?prompt=Explain quantum computing&autosubmit=false
In this case, the prompt is filled but the send button is not pressed.
【JavaScript API Usage】
You can call this extension directly from your web page.
■ Basic Usage:
```javascript
// Get your extension ID from chrome://extensions
const extensionId = "your-extension-id";
// Send prompt to Gemini
chrome.runtime.sendMessage(
extensionId,
{
type: "autofill",
prompt: "Tell me about AI",
autoSubmit: true // Set false to fill without sending
},
(response) => {
if (chrome.runtime.lastError) {
console.error("Failed:", chrome.runtime.lastError.message);
} else if (response && response.success) {
console.log("Success:", response);
}
}
);
```
■ Promise-based version (async/await support):
```javascript
function sendToGemini({ prompt, autoSubmit = true }) {
return new Promise((resolve, reject) => {
chrome.runtime.sendMessage(
extensionId,
{ type: "autofill", prompt, autoSubmit },
(response) => {
if (chrome.runtime.lastError) {
reject(new Error(chrome.runtime.lastError.message));
} else if (response?.success) {
resolve(response);
} else {
reject(new Error("Request failed"));
}
}
);
});
}
// Usage example
async function askGemini() {
try {
await sendToGemini({
prompt: "Explain artificial intelligence",
autoSubmit: true
});
console.log("Sent to Gemini");
} catch (error) {
console.error("Error:", error.message);
}
}
```
■ Connection check (ping):
```javascript
// Check if the extension is available
chrome.runtime.sendMessage(
extensionId,
{ type: "ping" },
(response) => {
if (chrome.runtime.lastError) {
console.log("Extension not found");
} else {
console.log("Connection OK:", response);
}
}
);
```
■ Benefits of JavaScript API:
- Support for large prompts (thousands of lines of data)
- No URL length limitations
- Direct integration with web applications
- Can be triggered by user actions like clicks
■ Notes:
- Does not work with file:// protocol (requires http:// or https://)
【Context Menu Integration】
Select text on any webpage, right-click to see "Send to Gemini" in the context menu.
■ Basic Feature:
Sends selected text directly to Gemini.
■ How to Use:
1. Select text on any webpage
2. Right-click and choose "Send to Gemini"
3. Gemini tab opens with the selected text filled in
【Custom Prompts】
Register frequently used prompts as custom menu items from the settings page.
■ Setting Up Custom Prompts:
1. Right-click the extension icon → select "Options"
Or, right-click anywhere and select "⚙️ Configure Custom Prompts"
2. Click "Add New Prompt"
3. Enter a menu label (e.g., "Translate to English") and prompt template (e.g., "Please translate the following text to English:")
4. Choose to enable/disable auto-submit (enabled by default)
5. Click Save
■ Using Custom Prompts:
1. Select text on any webpage
2. Right-click and choose your custom prompt
3. The custom prompt and selected text are combined and sent to Gemini
■ Benefits of Custom Prompts:
- Execute common tasks with one click
- Organize prompts by task (translation, summarization, code explanation, etc.)
- Share standardized prompts with your team
- Configure auto-submit per prompt
■ Use Cases
【Bookmarks】
Save frequently used prompts as bookmarks for quick access with one click.
【Web Application Integration】
Use the JavaScript API to call Gemini directly from web applications.
Example: Explain data analysis results with Gemini, integrate with code generation tools
【Custom Shortcuts】
Convert specific tasks or questions into URLs and share them with your team.
【Large Data Processing】
Via JavaScript API, you can send thousands of lines of data or code to Gemini without worrying about URL length limits.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
【Tags/Categories】
- Productivity
- AI Tools
- Automation
- Gemini
- Google AI
- Prompt Management
- Developer Tools
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
【Update History】
■ Version 1.2.0
✓ You can now specify a base URL (e.g., app or gem URL) for each custom prompt
■ Version 1.1.0
✓ Added context menu to send selected text to Gemini
✓ Added custom prompts feature (manageable from settings, combinable with selected text)
■ Version 1.0.0
✓ Initial release
✓ Auto-fill prompts from URL parameters
✓ External integration via JavaScript API
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Reviews
Loading reviews...
Permissions (2)
Permissions
contextMenusℹ Can add items to the right-click menu storageℹ Can store data locally in your browser
Details
| Version | 1.2.0 |
| Updated | Mar 13, 2026 |
| Size | 56.29KiB |
| First Seen | Mar 24, 2026 |
More by takoyaki
Popular in tools
Zotero Connector
by Zotero
8M
★ 3.96
tools
8M
★ 3.96
tools
Browsec VPN - Free VPN for Chrome
by Browsec
7M
★ 4.44
tools
7M
★ 4.44
tools
AnyDoc Translator - Translate Web and PDF
by www.wps.com
7M
★ 4.58
tools
7M
★ 4.58
tools
WPS PDF - Read, Edit, Fill, Convert, and AI Chat PDF with Ease
by www.wps.com
7M
★ 4.45
tools
7M
★ 4.45
tools
Video DownloadHelper
by Aclap
5M
★ 4.43
tools
5M
★ 4.43
tools
Popular Extensions
Adobe Acrobat: PDF edit, convert, sign tools
by Adobe Inc.
331M
★ 4.40
workflow
331M
★ 4.40
workflow
AdBlock — block ads across the web
by AdBlock
62M
★ 4.48
workflow
62M
★ 4.48
workflow
迅雷下载支持
by Shenzhen Xunlei Network Technology Co., Ltd.
59M
★ 2.77
workflow
59M
★ 2.77
workflow
Grammarly: AI Writing Assistant and Grammar Checker App
by Grammarly
42M
★ 4.50
communication
42M
★ 4.50
communication
Adblock Plus - free ad blocker
by eyeo GmbH
41M
★ 4.39
workflow
41M
★ 4.39
workflow