Return MSN Dislike

Unhide article dislikes on MSN news

// ==UserScript==
// @name         Return MSN Dislike
// @namespace    https://gf.qytechs.cn/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);
})();

QingJ © 2025

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