/*
* @title link2txt
* @description disable links
* @include http://*
* @include https://*
* @license MIT License http://nrm.mit-license.org/2013
* @require
*/
(function () {
Array.prototype.slice.call(document.querySelectorAll('a[href]')).
forEach(function (anchor) {
anchor.style.cursor = 'text';
anchor.removeAttribute('href');
});
})();