<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Faxziah</title>
    <description>The latest articles on DEV Community by Faxziah (@faxziah).</description>
    <link>https://dev.to/faxziah</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3690514%2F0cebe8c3-eeca-4cc6-b3f2-c164a20e8ab9.png</url>
      <title>DEV Community: Faxziah</title>
      <link>https://dev.to/faxziah</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/faxziah"/>
    <language>en</language>
    <item>
      <title>I built a Chrome extension that saves me from copy-pasting text to ChatGPT every time</title>
      <dc:creator>Faxziah</dc:creator>
      <pubDate>Fri, 02 Jan 2026 21:48:46 +0000</pubDate>
      <link>https://dev.to/faxziah/i-built-a-chrome-extension-that-saves-me-from-copy-pasting-text-to-chatgpt-every-time-4p9f</link>
      <guid>https://dev.to/faxziah/i-built-a-chrome-extension-that-saves-me-from-copy-pasting-text-to-chatgpt-every-time-4p9f</guid>
      <description>&lt;h1&gt;
  
  
  How I Stopped Wasting Time Copy-Pasting Text to ChatGPT
&lt;/h1&gt;

&lt;p&gt;If you work with text and use ChatGPT, DeepSeek, or other AI tools — you know this pain.&lt;/p&gt;

&lt;p&gt;I dealt with it until I snapped and built a Chrome extension that solves it in one click. Been using it for a couple months now and loving the time saved: &lt;a href="https://chromewebstore.google.com/detail/ai-text-tools-summarize-r/lafblpkfbhdbcehcehdlkkhiniijpcmh" rel="noopener noreferrer"&gt;AI Text Tools on Chrome Web Store&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  How I Got Here
&lt;/h2&gt;

&lt;p&gt;I work with text every day. Reading articles in English — need translation. Writing an email to a client — want to check my wording. Studying documentation — need a quick summary. AI is everywhere.&lt;/p&gt;

&lt;p&gt;And every single time it's the same routine:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select text&lt;/li&gt;
&lt;li&gt;Copy&lt;/li&gt;
&lt;li&gt;Open ChatGPT&lt;/li&gt;
&lt;li&gt;Paste&lt;/li&gt;
&lt;li&gt;Write a prompt&lt;/li&gt;
&lt;li&gt;Wait&lt;/li&gt;
&lt;li&gt;Copy the response&lt;/li&gt;
&lt;li&gt;Switch back to the page&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Sound familiar?&lt;/p&gt;

&lt;p&gt;At some point I caught myself thinking: I'm spending more time copying than actually working. It was annoying.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution Seemed Obvious
&lt;/h2&gt;

&lt;p&gt;Select text → click a button → get the result. Right on the page. No tab switching.&lt;/p&gt;

&lt;p&gt;And... gradually the extension was ready.&lt;/p&gt;

&lt;h2&gt;
  
  
  What AI Text Tools Does
&lt;/h2&gt;

&lt;p&gt;Select any text on a page — a menu with actions appears:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Summarize&lt;/strong&gt; — compresses a wall of text to its essence. Great for long articles and documentation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Rephrase&lt;/strong&gt; — rewrites text in different words. I use it for emails when I want to sound more formal or casual.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Translate&lt;/strong&gt; — translation to many languages. Works both ways.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Discuss&lt;/strong&gt; — opens an AI chat right on the page. You can ask questions about the selected text.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Highlight Key Paragraphs&lt;/strong&gt; — if you're worried about AI hallucinations and want to read the text yourself, but without all the fluff — perfect feature.&lt;/p&gt;

&lt;p&gt;Everything runs through Google's Gemini API. You just need an API key (free).&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Looks Like
&lt;/h2&gt;

&lt;p&gt;Say I'm reading an article in a foreign language. I select a paragraph, a modal with a menu appears, I click Translate — in a second I see the translation right below the text. I don't leave the page, don't lose context.&lt;/p&gt;

&lt;p&gt;Or I receive a long email. Select it, hit Summarize — get the gist in three sentences. Then decide if it's worth reading in full.&lt;/p&gt;

&lt;p&gt;These little things actually save quite a bit of time and energy each day. Under the hood, it uses Gemini models (LLM from Google), accessed via API.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Gemini and Not ChatGPT?
&lt;/h2&gt;

&lt;p&gt;The main reason — free API.&lt;/p&gt;

&lt;p&gt;OpenAI's ChatGPT doesn't have a free tier. Google does. For most tasks it's more than enough. So I managed to keep the extension completely free, as originally planned.&lt;/p&gt;

&lt;p&gt;Also, this meant I didn't need to connect to any external server. Your computer talks directly to Gemini via API, so the extension doesn't collect or store any user data.&lt;/p&gt;

&lt;p&gt;Plus, Gemini's responses are generally just as good as ChatGPT's.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;The extension is free, but I really want to add:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Support for other models&lt;/strong&gt; (DeepSeek, ChatGPT, Claude, etc.) — users could add their own API keys, keeping the extension server-free&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Custom actions&lt;/strong&gt; — so everyone can create their own prompts, like "Shorten to 280 characters for a tweet"&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Keyboard shortcuts&lt;/strong&gt; — for even faster AI access&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you want to try it: &lt;a href="https://chromewebstore.google.com/detail/ai-text-tools-summarize-r/lafblpkfbhdbcehcehdlkkhiniijpcmh" rel="noopener noreferrer"&gt;AI Text Tools on Chrome Web Store&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd love your feedback in the comments. What are your most common text tasks that could be automated?&lt;/p&gt;

&lt;p&gt;Install, try it out, and leave a review!&lt;/p&gt;

&lt;p&gt;Thanks for reading.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>extensions</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
