LDR - Clear Deduped Style

By iwamot Last update Mar 10, 2008 — Installed 64 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0
// ==UserScript==
// @name           LDR - Clear Deduped Style
// @namespace      http://iwamot.com/
// @include        http://reader.livedoor.com/reader/*
// ==/UserScript==

(function(){
	var w = (typeof unsafeWindow == 'undefined') ? window : unsafeWindow;
	var _onload = w.onload;
	w.onload = function () {
		_onload();
		main();
	}

	function main() {with (w) {
		Keybind.add('R', function () {
			if (get_active_item(true)) {
				var item = $('item_' + get_active_item(true).item_id);
				toggleClass(item, 'LDE_displayed');
			}
		});
	}}
})();