/*
* @title !link
* @description toggle enable/disable links
* @include http://*
* @include https://*
* @license MIT License http://nrm.mit-license.org/2013
* @require
*/
(function (doc) {
var id = '-bookmarklet-disable-link-';
var style = doc.getElementById(id);
if (style) {
style.parentNode.removeChild(style);
return;
}
style = doc.createElement('style');
style.id = id;
style.textContent = 'a[href] { pointer-events: none; }';
doc.head.appendChild(style);
})(document);