Greasy Fork is available in English.

No Gold Please!

Removes elements pertaining to Reddit Gold

// ==UserScript==
// @name         No Gold Please!
// @namespace    http://kartikynwa.gitlab.io/
// @version      0.6
// @description  Removes elements pertaining to Reddit Gold
// @author       KS
// @match        *://*.reddit.com/*
// @icon         https://www.google.com/s2/favicons?domain=www.reddit.com
// @grant        none
// @run-at       document-end
// ==/UserScript==

// Function courtesy of PaarCrafter on StackOverflow
// https://stackoverflow.com/a/46285637
function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle(".give-gold-button { display: none !important; padding: 0 !important; }");
addGlobalStyle(".awardings-bar { display: none !important; }");