Hide the number of dislikes in YouTube
当前为
// ==UserScript==
// @name YouTube Dislike Concealer
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Hide the number of dislikes in YouTube
// @author eggplants
// @homepage https://github.com/eggplants
// @match https://*.youtube.com/*
// @grant none
// @license MIT
// ==/UserScript==
function getElementByXpath(path) {
return document.evaluate(
path,
document,
null,
XPathResult.FIRST_ORDERED_NODE_TYPE,
null
).singleNodeValue;
}
// hide dislike counter
const selector_1 =
"//ytd-toggle-button-renderer[2]/a/yt-formatted-string";
getElementByXpath(selector).style.display="none";
// hide value bar
const selector_2 =
"ytd-sentiment-bar-renderer";
document.getElementsByTagName(selector_2)[0].style.display = "none"