Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungUmfrage: Wo drückt Sie der Schuh im Microsoft-Umfeld?(21.09.2026 um 12:00 Uhr)
Sichere ProgrammierungHow I Built (and Broke) a Production Multi-Agent AI System(21.09.2026 um 12:02 Uhr)
Sichere ProgrammierungResize and strip EXIF metadata from user uploads in Node.js(21.09.2026 um 12:04 Uhr)
Sichere ProgrammierungHandbrake Alternatives: What to Use When You Don't Want to Install It(21.09.2026 um 12:08 Uhr)
Sichere Programmierungwhy on earth does the Claude logo still look like a sphincter?(21.09.2026 um 12:08 Uhr)
Sichere ProgrammierungUmfrage: Wo drückt Sie der Schuh im Microsoft-Umfeld?(21.09.2026 um 12:00 Uhr)
Sichere ProgrammierungHow I Built (and Broke) a Production Multi-Agent AI System(21.09.2026 um 12:02 Uhr)
Sichere ProgrammierungResize and strip EXIF metadata from user uploads in Node.js(21.09.2026 um 12:04 Uhr)
Sichere ProgrammierungHandbrake Alternatives: What to Use When You Don't Want to Install It(21.09.2026 um 12:08 Uhr)
Sichere Programmierungwhy on earth does the Claude logo still look like a sphincter?(21.09.2026 um 12:08 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Control Gemini with Just a URL. The Chrome Extension "Send to Gemini" Is Incredibly Useful

If you use Google Gemini on a daily basis, have you ever experienced any of these? Manually copy-pasting the same prompts over and over Wanting to send data from your web app to Gemini, but API usage is costly Finding it tedious to share…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

If you use Google Gemini on a daily basis, have you ever experienced any of these?




  • Manually copy-pasting the same prompts over and over

  • Wanting to send data from your web app to Gemini, but API usage is costly

  • Finding it tedious to share "try asking with this prompt" with team members



Send to Gemini solves all of these with a single Chrome extension.



👉 Send to Gemini - Chrome Web Store









What Can It Do?



In a nutshell, it's a Chrome extension that lets you programmatically control Gemini prompts through URL parameters and a JavaScript API.



What does this mean? It transforms Gemini prompt input from "something you type by hand" to "something you can automate".



And because it operates Gemini Chat directly in the browser without using the Gemini API, there are zero API usage fees. Whether you're on a free Gemini account or Gemini Advanced, your everyday Gemini Chat becomes the target of automation.









The Best Feature: Pass Prompts via URL Parameters



The usage couldn't be simpler. Just add ?prompt= to the Gemini URL.




https://gemini.google.com/app?prompt=Tell me about today's weather






Simply open this URL in your browser, and the prompt is auto-filled and auto-submitted. That's all there is to it.






What This Makes Possible






1. Bookmarks Become Prompts



Save your frequently used questions or prompts as bookmarks, and you can ask Gemini with a single click.




📌 Daily News Summary
https://gemini.google.com/app?prompt=Summarize today's top news in 3 bullet points

📌 English Email Proofreading
https://gemini.google.com/app?prompt=Please proofread the following English email:&autosubmit=false






Adding autosubmit=false will only fill in the prompt without submitting, so you can add more text before sending.






2. Share Prompts with Your Team



Just paste a URL in Slack or Notion, and everyone on the team can ask Gemini using the same prompt.




"Try asking about the root cause of this outage with this prompt:"

https://gemini.google.com/app?prompt=Analyze the following error logs and provide the root cause and recommended actions:




No more being asked "What prompt should I use?"






3. Embed in Links from External Tools



You can add an "Analyze with Gemini" button to dashboards and internal tools. Just dynamically generate URLs, and any tool can integrate with Gemini.









Another Powerful Feature: JavaScript API for External Integration



URL parameters alone are powerful enough, but Send to Gemini goes further by providing a JavaScript API.



This lets you send prompts to Gemini directly from your own web pages and web apps.




const extensionId = "your-extension-id";

chrome.runtime.sendMessage(
extensionId,
{
type: "autofill",
prompt: "Please analyze this data:\n" + yourData,
autoSubmit: true
},
(response) => {
if (response?.success) {
console.log("Successfully sent to Gemini!");
}
}
);









Differences from URL Parameters

































URL Parameters JavaScript API
Ease of Use ◎ Just paste a URL ○ Requires code
Text Volume △ URL length limits ◎ Thousands of lines OK
Dynamic Data △ Encoding required ◎ Pass variables directly
Use Cases Bookmarks, link sharing Web app integration, data analysis


With the JavaScript API, you can send thousands of lines of logs or code directly to Gemini without worrying about URL length limits.



And let me emphasize again: all of this is available completely free of charge. Normally, calling Gemini from an application requires a Gemini API contract with pay-per-token billing. But Send to Gemini is simply a browser extension that operates Gemini Chat. No API key needed, no charges at all. Whether for personal projects or team experimentation, you can try Gemini integration without worrying about costs.






async/await Support



For modern JavaScript, you can easily write a Promise-based version.




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("Failed to send"));
}
}
);
});
}

// Usage
await sendToGemini({
prompt: "Please review the following code:\n" + codeBlock,
autoSubmit: true
});












Even More Handy Features






Instant Send via Right-Click Menu



Select text on a web page, right-click → "Send to Gemini." That's it — a new Gemini tab opens with the selected text filled in as the prompt.



Send interesting articles or error messages to Gemini without any copy-and-paste.






Custom Prompts



Register frequently used prompt templates like "Translate to English," "Summarize," or "Explain this code" in the right-click menu.



Selected text + custom prompt are automatically combined, so just select text and right-click to complete translation or summarization in a single action.



You can also configure auto-submit on/off for each custom prompt individually — a nice touch.






8 Languages Supported



Supports Japanese, English, German, Spanish, French, Korean, Portuguese, and Chinese. The UI automatically switches based on your browser's language settings.









Usage Ideas




































Scenario Method
Daily news summary Bookmark a URL
Code review requests Auto-send via JavaScript API
Article translation Select text → Right-click → Custom prompt
Error log analysis Send large text via JavaScript API
Sharing prompts with team Paste URL in Slack/Notion
Internal tool integration Add "Analyze with Gemini" button via API








Conclusion



The essence of Send to Gemini is making Gemini programmable.





  • URL parameters for easy automation through bookmarks and link sharing


  • JavaScript API for full-fledged external integration from web apps



No Gemini API contract, no API keys, no server-side implementation needed. Achieving all of this in the browser alone at zero cost is groundbreaking.



If you want to weave Gemini more deeply into your daily workflow, give it a try.



👉 Send to Gemini - Chrome Web Store

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Control Gemini with Just a URL. The Chrome Extension "Send to Gemini" Is Incredibly Useful

Thematisch verwandte Begriffe: Control, Gemini, with, Just · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-94040 | A flaw has been found in vas3k TaxHacker up to 0.8.5. Affected by this v…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick