Return MSN Dislike

Unhide article dislikes on MSN news

目前为 2023-11-04 提交的版本。查看 最新版本

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

QingJ © 2025

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