A customized style for <a href="https://www.inoreader.com/" target="_blank">InoReader</a> with :
当前为
// ==UserScript==
// @name inoreader-clear
// @namespace http://userstyles.org
// @description A customized style for <a href="https://www.inoreader.com/" target="_blank">InoReader</a> with :
// @author hectorqiu
// @homepage https://userstyles.org/styles/119240
// @include http://inoreader.com/*
// @include https://inoreader.com/*
// @include http://*.inoreader.com/*
// @include https://*.inoreader.com/*
// @run-at document-start
// @version 0.1
// ==/UserScript==
(function() {var css = [
"@namespace url(http://www.w3.org/1999/xhtml);",
".reader_pane_view_style_2{",
" width:400px!important;",
"}",
"#subscriptions_buttons, #sb_rp_tools {background-image: none !important;border-bottom: 1px solid !important;}",
".article_stripe{background-color: #fff !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);
}
}
})();