隐藏今日头条的置顶新闻

Hide sticky-cell class elements on Toutiao

// ==UserScript==
// @name         隐藏今日头条的置顶新闻
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hide sticky-cell class elements on Toutiao
// @author       You
// @match        https://www.toutiao.com/*
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = '.sticky-cell { display: none !important; }';
    document.getElementsByTagName('head')[0].appendChild(style);
})();