Greasy Fork

Greasy Fork is available in English.

CNBeta首页广告隐藏

通过css隐藏首页滚动时加载的广告

当前为 2018-09-17 提交的版本,查看 最新版本

// ==UserScript==
// @name         CNBeta首页广告隐藏
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  通过css隐藏首页滚动时加载的广告
// @author       woodj
// @license      MIT
// @include        *://www.cnbeta.com*
// @icon           https://www.cnbeta.com/images/logo_1.png
// ==/UserScript==

(function () {
    'use strict';
    // 创建 <style> 标签
    var style = document.createElement("style");
    // 对WebKit hack :(
    style.appendChild(document.createTextNode(".trc_related_container { display: none; }"));
    // 将 <style> 元素加到页面中
    document.head.appendChild(style);
})();