Adds a draggable floating button to copy the transcript text to your clipboard with one click. Strips DOM clutter, optionally removes timestamps, auto-detects browser language.
Adds a draggable floating button to TurboScribe transcript pages that copies clean transcript text to your clipboard with one click. Strips DOM clutter, optionally removes timestamps.
A lightweight userscript that adds a small floating COPY button to TurboScribe transcript pages. One click grabs just the transcript text — no sidebar clutter, no player controls, no metadata — and puts it on your clipboard, ready to paste into ChatGPT, Gemini, Claude, your notes app, an EHR, or anywhere else.
Built for people who frequently process TurboScribe transcripts in other tools and don't want to manually select-all-then-copy every time (and then waste minutes deleting timestamps and headers from the pasted text).
The script targets TurboScribe's transcript container directly ([id^="transcript-"]), so the copied text contains only the transcript content. No headers, no sidebar, no "Grabación de..." titles, no playback controls, no creation date.
By default, timestamps like (0:02), (1:15) are removed, leaving you with clean prose:
José, tú tienes 58 años. Sí o no? Ocho meses, por ahí. Ah, tú tienes 58 años. Cuéntame, ¿qué te puedo ayudar?
Want timestamps back? Toggle them in two clicks (see below).
Three ways, pick whichever you prefer:
Easy (recommended): Click the Tampermonkey icon in your browser toolbar → find this script → click "Include timestamps: ON/OFF" to flip the setting. The page reloads and your choice is remembered forever.
Manual: Open the script in your userscript manager's editor and change the top-of-file constant:
const INCLUDE_TIMESTAMPS_DEFAULT = false; // change to true
Note: the Tampermonkey menu toggle takes priority over this constant once used.
| Code | Language |
|---|---|
| en | English (default) |
| es | Español |
| pt | Português |
| fr | Français |
| de | Deutsch |
| it | Italiano |
Other browser languages display the English version. Translation contributions welcome.
turboscribe.ai.[id^="transcript-"]; fallback: common CSS selectors; last resort: regex pattern detection), so it stays resilient to small DOM changes.v1.2.0
[id^="transcript-"]) — no more sidebar, headers, or player controls in the copyv1.1.0
v1.0.0
MIT — fork, modify, adapt freely.