Return MSN Dislike

Unhide article dislikes on MSN news

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Return MSN Dislike
// @namespace    https://greasyfork.org/en/users/50-couchy
// @version      20241218
// @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
// ==/UserScript==

(function() {
    'use strict';
    function forceProp(name, value) {
        Object.defineProperty(Element.prototype, name, {
            enumerable: false,
            configurable: false,
            get: function() {
                return value;
            },
            set: function(data) {
                // Do nothing
            }
        });
    }
    forceProp("_hideDownVote", false);
    forceProp("_hideDownvoteCount", false);
    forceProp("_enableHeartIcon", false);
})();