NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Remove "Mixed Rating" Option
// @namespace presynce.com
// @license MIT
// @version 0.1
// @description Removes the "Mixed Rating" button from feedback pages.
// @author artburkart
// @match https://*.greenhouse.io/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll("span.selectable.mixed-rating.rating-icon").forEach(e => e.parentNode.removeChild(e))
// Your code here...
})();