v2ex.com

极简版v2ex.com,去掉logo、页脚、广告、侧栏等

目前为 2019-05-19 提交的版本。查看 最新版本

// ==UserScript==
// @name         v2ex.com
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  极简版v2ex.com,去掉logo、页脚、广告、侧栏等
// @author       abledf
// @match        https://www.v2ex.com/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
     GM_addStyle(`
#Wrapper,
#Logo {
    background-image: none !important;
    background-color: #fff !important;
}
#Main {
    width: 70%;
    margin: auto;
}
.topic_content, .reply_content, .item_title{
    font-size: 18px;
}

a:link,
a:visited,
a:active {
    color: #000000;
}

#ad_unit,
#google-center-div,
.avatar,
#Bottom,
#Rightbar {
    display: none !important;
}

#Main tr > td:nth-child(1) {
    width: 0px;
}


     `)
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址