Sistemin işleyişi:
Birisi içeriğinizi kopyaladı sitenizde paylaştı. Bu kod sayesinde kopyaladığı metin sonuna:

Makale veya Yazı Metni. Makale veya Yazı Metni. Makale veya Yazı Metni. Makale veya Yazı Metni.

Read More:
https://site.com/2018/06/05/makale-veya-yazi

Şeklinde yazacak ve birazda olsa çalınmasını engelleyebilirsiniz.

Html tagının bitişine şu kodu ekleyiniz:
<script>
function addLink() {
//Get the selected text and append the extra info
var selection = window.getSelection(),
pagelink = '

Read More:
' + document.location.href,
copytext = selection + pagelink,
newdiv = document.createElement('div');

//hide the newly created container
newdiv.style.position = 'absolute';
newdiv.style.left = '-99999px';

//insert the container, fill it with the extended text, and define the new selection
document.body.appendChild(newdiv);
newdiv.innerHTML = copytext;
selection.selectAllChildren(newdiv);

window.setTimeout(function () {
document.body.removeChild(newdiv);
}, 100);
}

document.addEventListener('copy', addLink);
</script>