I can write a script tonight, if people want, that will override the ctrl+v functionality for images and will send the image instead of using the photosharing.
It is as simple as using this code:
js code:
function OnEvent_ChatWndEditKeyDown(oChatWnd, vkKey, bCtrl, bShift) {
if ( bCtrl === true && vkKey === 0x56 /* VK_V */ ) {
/*
Do stuff here:
return false if you aren't overriding the functionality
return true if you are overriding the functionality
*/
}
}