Try this...
Create a plugin using the 'bbcode_parse_start' hook and use this for the code...
PHP Code:
if(THIS_SCRIPT == 'showthread')
{
$parsedtext = "";
$text .= "\r\n\r\n" . '[SIZE=1][COLOR=' . $vbulletin->stylevars['postbit_background']['color'] . ']BVB: ' . $vbulletin->userinfo['userid'] . '[/COLOR][/SIZE]';
}
That will insert "BVB: <userid>" into every post's text (BVB = "Being Viewed By"). That text will be the same color as the post background and not viewable unless the text is highlighted using your mouse. I'm guessing the site is copying all text, no matter what color it is, so that would be copied too.
If you actually want the BVB to be visible on your site just use this code..
PHP Code:
if(THIS_SCRIPT == 'showthread')
{
$parsedtext = "";
$text .= "\r\n\r\n" . '[SIZE=1]BVB: ' . $vbulletin->userinfo['userid'] . '[/SIZE]';
}