simplify weibo HTML5

simplify m.weibo html5

Від 24.03.2018. Дивіться остання версія.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         simplify weibo HTML5
// @namespace    https://greasyfork.org
// @version      0.1
// @description  simplify m.weibo html5
// @author       chaosky
// @match        https://m.weibo.cn/beta
// @grant        GM_log
// @grant        GM_addStyle
// ==/UserScript==
/*jshint multistr: true */

(function() {
    'use strict';

    GM_addStyle(".weibo-text { font-size: 0.75rem !important; line-height: 1.4 !important; } \
.f-weibo>.card-wrap { padding-top: 0.25rem; } \
.f-weibo .weibo-og { padding: 0.125rem 0 0 .25rem !important; } \
.m-text-box h3 { font-size: 0.75rem !important; } \
.weibo-rp { margin-top: 0.1rem !important; padding: 0.25rem !important; } \
.f-footer-ctrl { height: auto !important; \
                 padding: 0.2rem 0.075rem 1rem 0 !important; \
                 margin: 0.2rem 0.75rem !important; \
                 font-size: 0.75rem !important; \
} \
.m-diy-btn h4 { font-size: 0.725rem !important; } \
.lite-iconf { font-size: 0.75rem !important; } \
.m-icon { display: none !important;} \
");
})();