Готово, сам нашел. Поэтому я просто сделал это:
$('img[data-toggle="lightbox"],img.thickbox').each(function(){
if (!$(this).attr("data-remote")){
$(this).attr("data-remote", $(this).attr("src")).css("cursor", "pointer");
}
});
и в конфигурации tinymce:
image_class_list: [
{
title: 'None', value: ''}
,
{
title: 'Responsive image', value: 'img-fluid'
}
,
{
title: 'Responsive image + modal', value: 'img-fluid thickbox'
}
],