The 語源由来辞典 can be fun to browse through.
Today I stumbled on this entry and wanted to look up one of the words in the description (ずる賢い ).
On attempting this, I discovered that they used an "oncopy" attribute of the <body>
element to display a copyright notice and prevent the copy action.
Theoretically, one could use a Greasemonkey script like the one below to disable this annoy...feature. What you do with it is up to you.
// ==UserScript==
// @name No oncopy
// @description Remove the "oncopy" attribute from the body
// @include http://gogen-allguide.com/*
// ==/UserScript==
var elements = document.getElementsByTagName('body');
elements[0].removeAttribute("oncopy");
Comments