Greasy Fork

Greasy Fork is available in English.

自用精简淘宝首页

精简淘宝首页广告,反正我直接搜索,也不看底下

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         自用精简淘宝首页
// @version      0.1
// @description  精简淘宝首页广告,反正我直接搜索,也不看底下
// @author       FeiLong
// @match        https://www.taobao.com/
// @grant	GM_addStyle
// @namespace http://greasyfork.icu/users/28687
// ==/UserScript==


//这个函数抄自:
//http://greasyfork.icu/scripts/16678-%E8%87%AA%E7%94%A8%E7%B2%BE%E7%AE%80b%E7%AB%99/code/%E8%87%AA%E7%94%A8%E7%B2%BE%E7%AE%80B%E7%AB%99.user.js
function css_hide(condition) {
	GM_addStyle(condition + ' { display: none !important; }');
}

/*********淘宝首页***************/
//搜索提示
css_hide(".J_TbSearchContent");

//左边
css_hide(".main");

//特色中国哪一行
css_hide(".nav");

//淘宝二维码
css_hide(".tbh-qr");

//搜索推荐
css_hide(".search-ft");

//中间滚动广告
css_hide(".J_Core");

//右侧公告
css_hide(".tbh-notice");

//充话费的
//css_hide(".tbh-conve");

//app
css_hide(".tbh-app");

//中间的
css_hide(".seat");

//下边的
css_hide(".bottom");

//飘着的
css_hide(".hander");

//竟然还留了点
css_hide(".tbh-belt");


//这还藏一个
css_hide(".service-ft");

//最下边
css_hide(".footer");

//淘金币什么的
css_hide(".member-tjb");