feedlyarabic

feedly arabic

Versión del día 8/2/2020. Echa un vistazo a la versión más reciente.

// ==UserScript==
// @name          feedlyarabic
// @description	  feedly arabic
// @include       http://feedly.com/*
// @include       https://feedly.com/*
// @include       http://*.feedly.com/*
// @include       https://*.feedly.com/*
// @run-at        document-start
// @version       0.20191220133759
// @namespace https://greasyfork.org/users/119506
// ==/UserScript==
(function() {var css = [
	".merriweather, .entryBody, .slabserif, .entryBody, .inlineFrame, .u100Entry, .title, .fx, .entry, .title {font-family: \"Droid Arabic Naskh\", sans-serif !important;",
	"font-size:18px !important; direction: rtl !Important;}",
	".condensed-tools, .save-for-later, .CondensedToolbar {display: none !important;}",
	".feedlyChrome--leftnav-open #feedlyFrame {margin-left: 220px !important;}",
	"#feedlyChrome__leftnav-wrapper {width: 220px !important;}",
	".u100Entry, .entryBody {max-width: 747px !important;}",
	"#feedlyPageFX.title-only, #searchBarFX.title-only .container {",
	"padding-left: 3px !important; padding-right: 6px !important;",
	"width: 940px !important;}",
	".fx .container {margin-left: 5px !important; margin-right: 70px !important;}",
	".fx .entry.u0 .ago { padding-left: 0px !important; padding-right: 0px !important;}",
	".iframe {height: 440px !important; width: 740px !important;}",
	".headerInfo, .floatingEntryScroller {top: 44px !important;}",
	"#feedlyFrame {width: 900px !important;}",
	"#feedlyPageHolderFX {width: 980px !important;}",
	".tagsHolder {margin-top: 0.5rem !important;}",
	".merriweather .entryBody {padding-top: 1px !important;}",
	".headerInfo + .floatingEntryScroller {width: 800px !important;}",
	".sliderContainer {min-width: 5% !important; width: 800px !important;}"
].join("\n");
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var node = document.createElement("style");
	node.type = "text/css";
	node.appendChild(document.createTextNode(css));
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		heads[0].appendChild(node);
	} else {
		// no head yet, stick it whereever
		document.documentElement.appendChild(node);
	}
}
})();