Greasy Fork

Greasy Fork is available in English.

搜狐号文章去广告

去重搜狐号相关文章页面广告,热门图集,搜狐号分享,推荐阅读,大家都在看,分享到。调整页面显示布局

目前为 2019-08-21 提交的版本。查看 最新版本

// ==UserScript==
// @name 搜狐号文章去广告
// @namespace Zeko Scripts
// @match *://www.sohu.com/*
// @grant none
// @description 去重搜狐号相关文章页面广告,热门图集,搜狐号分享,推荐阅读,大家都在看,分享到。调整页面显示布局
// @author zeko zhang
// @version 1.0.0
// ==/UserScript==


$(() => {
  $("#right-side-bar").remove();
  $("#articleAllsee").remove();
  $("#god_bottom_banner").remove();
  $("#left-bottom-ad").remove();
  $("#article-do").remove();
  $("#backsohucom").remove();
  $(".groom-read").remove();
  
  $(".article-page #article-container .main").css("width", 900);
})