IT home float AD remover

去掉IT之家页面浮动广告

2017/03/14のページです。最新版はこちら

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name        IT home float AD remover
// @namespace   charlesyin
// @include     http://www.ithome.com/*
// @version     0.1
// @grant       none
// @description  去掉IT之家页面浮动广告
// ==/UserScript==
function addStyle() {
  document.querySelector('body > div[id="hd_float"]').setAttribute('style', 'display:none !important;');
  document.querySelector('body').setAttribute('style', 'padding-top:0px !important;');
}
document.addEventListener('DOMContentLoaded', function (event) {
  addStyle();
});