javascript:(function(){
	document.querySelector('body').classList.add('text-spacing');
	var style = document.createElement('style');
	var styleContent = document.createTextNode('.text-spacing * { line-height: 1.5 !important; letter-spacing: 0.12em !important; word-spacing: 0.16em !important; } .text-spacing p { margin-bottom: 2em !important; }');
	style.appendChild(styleContent);
	var head = document.getElementsByTagName('head');
	head[0].appendChild(style);
})();