Here's PlainCopy for you!
Skrommel
;PlainCopy.ahk
;Press Ctrl-C once to copy regularly, Ctrl-C twice fast to copy as text.
;Skrommel @2006
#SingleInstance,Force
Gosub,TRAYMENU
counter=0
Return
$^c::
counter+=1
SetTimer,TWICE,333
Return
TWICE:
SetTimer,TWICE,Off
Send,^c
If counter>1
Clipboard=%Clipboard%
counter=0
Return
TRAYMENU:
Menu,Tray,DeleteAll
Menu,Tray,NoStandard
Menu,Tray,Add,PlainCopy,ABOUT
Menu,Tray,Add,
Menu,Tray,Add,&About,ABOUT
Menu,Tray,Add,E&xit,EXIT
Menu,Tray,Default,PlainCopy
Return
ABOUT:
about=PlainCopy
about=%about%`n
about=%about%`nPress Ctrl-C once to copy regularly, Ctrl-C twice fast to copy as text.
about=%about%`n
about=%about%`nSkrommel @2006 www.donationcoder.com/Software/Skrommel
MsgBox,0,PlainCopy,%about%
about=
Return
EXIT:
ExitApp