// ==UserScript== // @name Return MSN Dislike // @namespace https://greasyfork.org/en/users/50-couchy // @version 20231104 // @description Unhide article dislikes on MSN news // @author Couchy // @match https://www.msn.com/*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=msn.com // @grant none // @run-at document-start // @downloadURL none // ==/UserScript== (function() { 'use strict'; Object.defineProperty(Object.prototype, "hideDownvoteCount", { enumerable: false, configurable: false, get: function() { return this.prop; }, set: function(data) { data?.subject?.setAttribute?.("hidedownvotecount", "false"); this.prop = data; } }); })();