no image

no images

目前为 2021-11-19 提交的版本。查看 最新版本

// ==UserScript==
// @name         no image
// @namespace    http://www.gongjumi.com/
// @version      0.2
// @description  no images
// @author       h2ero
// @match        *://*/*
// @icon         https://www.google.com/s2/favicons?domain=baidu.com
// @grant        none
// @require     https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/3.5.1/jquery.min.js
// ==/UserScript==

var m = function (f) {
    return f.toString().split('\n').slice(1, - 1).join('\n');
}
var loadCss = function () {
    var style = document.createElement('style');
    style.type = 'text/css';
    style.textContent = m(function () { /*
           #postlist{border: 1px solid #ccc;}
            #nav, #nav a {
               color: #000000;
            }
            body{
               background:#fff;
            }
            .postauthor .profile, .postbottom {
               display:none;
            }
            .t_msgfontfix {
               min-height:0px !important;
            }
            body{
               margin: 0 auto;
                width: 960px;
            }
            .wrap, #nav{
               width:100%;
            }
            a:visited{
                  color:#aaa;
            }
            .avatar{
                              display:none;

            }
            h1,h2{
            font-size:14px;
            }
            div#header div.wrap h2{
                  display:none;
            }
            .main{border:1px #ccc solid;}
          */
    });
    var head = document.querySelector('head')
    head.appendChild(style);
};
loadCss();

    // Your code here...