Remove these reward effects please

Removes the terrible background effects that make the messages hard to read. Contact me on reddit if there are issues or more effects are added i'll take care of these. https://www.reddit.com/user/FeelsPogChampMan

目前为 2020-06-01 提交的版本。查看 最新版本

// ==UserScript==
// @name         Remove these reward effects please
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Removes the terrible background effects that make the messages hard to read. Contact me on reddit if there are issues or more effects are added i'll take care of these. https://www.reddit.com/user/FeelsPogChampMan
// @author       Bum
// @match        https://www.reddit.com/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
    function GM_addStyle(css) {
        const style = document.getElementById("GM_addStyle") || (function() {
            const style = document.createElement('style');
            style.type = 'text/css';
            style.id = "GM_addStyle";
            document.head.appendChild(style);
            return style;
        })();
        const sheet = style.sheet;
        sheet.insertRule(css, (sheet.rules || sheet.cssRules || []).length);
    }

    GM_addStyle ( `
        img[src*="flame"]{
           display:none;
        }
   ` );

    GM_addStyle ( `
        div[aria-role="presentation"]{
           box-shadow:none !important;
           background : transparent !important;
        }
    ` );
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址