Paste w/ Prepend or Append

I frequently need to add a constant string, e.g., punctuation such as “,” or “:”, to the beginning of what’s already on the clipboard before pasting the whole thing.

An extension that could could paste what’s on the clipboard combined with a string at the beginning or end would be very useful for me.

Hi @nello — something like this should do it:

#popclip
name: 'Paste with :'
icon: 'monospaced :'
after: paste-result
javascript: return ':' + pasteboard.text

(The above block is an extension snippet - select it to install the extension with PopClip)