Inoreader Widescreen Fix

Let Inoreader articles spans wider.

Verze ze dne 08. 10. 2024. Zobrazit nejnovější verzi.

// ==UserScript==
// @name         Inoreader Widescreen Fix
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Let Inoreader articles spans wider.
// @author       henryxrl
// @match        http*://*.inoreader.com/*/*
// @icon         http://www.inoreader.com/favicon.ico
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function() {
    var css= ".reader_pane_view_style_0 .ar { margin: 0 10px 0 10px!important; } .article_title_wrapper { margin: 5px 2px 5px 2px !important; } body.article_alignment_1 .reader_pane_view_style_1 .ar { width: 90%!important; } .article_full_contents {  width: 80%!important;  }  .article_content, .article_footer {  max-width: 100%!important;  }  .article_title {  width: 100%!important;  }"
    GM_addStyle(css);
})();