Skip to content

Instantly share code, notes, and snippets.

@wilmoore
Last active June 29, 2024 02:17
Show Gist options
  • Select an option

  • Save wilmoore/2a7321f99e1ac825a5de9b49d5642a73 to your computer and use it in GitHub Desktop.

Select an option

Save wilmoore/2a7321f99e1ac825a5de9b49d5642a73 to your computer and use it in GitHub Desktop.
Software Engineering :: Web :: Browser :: Extension :: Development :: Conversation Title for ChatGPT :: Keyboard Shortcuts

Software Engineering :: Web :: Browser :: Extension :: Development :: Conversation Title for ChatGPT :: Keyboard Shortcuts

⪼ Made with 💜 by Polyglot.

Keyboard Shortcuts

Copy Title To Clipboard

image

HTML
<div class="flex items-center justify-between overflow-hidden text-token-text-primary">
  <div class="flex flex-shrink items-center overflow-hidden text-sm">
    <div class="truncate">Copy title to clipboard</div>
  </div>
  <div class="ml-3 flex flex-row gap-2">
    <div class="my-2 flex h-8 items-center justify-center rounded-md border border-token-border-light text-token-text-secondary min-w-[32px]">
      <span class="text-sm">c</span>
    </div>
    <div class="my-2 flex h-8 items-center justify-center rounded-md border border-token-border-light text-token-text-secondary min-w-[32px]">
      <span class="text-xs">t</span>
    </div>
  </div>
</div>

Copy Markdown Link To Clipboard

image

HTML
<div class="flex items-center justify-between overflow-hidden text-token-text-primary">
  <div class="flex flex-shrink items-center overflow-hidden text-sm">
    <div class="truncate">Copy title link to clipboard (markdown)</div>
  </div>
  <div class="ml-3 flex flex-row gap-2">
    <div class="my-2 flex h-8 items-center justify-center rounded-md border border-token-border-light text-token-text-secondary min-w-[32px]">
      <span class="text-sm">c</span>
    </div>
    <div class="my-2 flex h-8 items-center justify-center rounded-md border border-token-border-light text-token-text-secondary min-w-[32px]">
      <span class="text-sm">l</span>
    </div>
  </div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment