PEACE AND LOVE,跟恶臭言论说拜拜。
当前为
// ==UserScript==
// @name 隐藏评论区
// @namespace http://tampermonkey.net/
// @version 0.1
// @description PEACE AND LOVE,跟恶臭言论说拜拜。
// @author You
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 获取当前页面的 URL
var currentUrl = window.location.href;
// 根据不同的页面 URL 使用不同的选择器
var commentsSelector;
if (currentUrl.includes('baidu.com')) {
commentsSelector = '#commentModule'; // 替换成实际页面的选择器
} else if (currentUrl.includes('qq.com')) {
commentsSelector = '#qqcom-comment'; // 替换成实际页面的选择器
} else {
// 如果没有匹配的页面,不执行隐藏评论的操作
return;
}
// 获取所有匹配选择器的评论区域元素
var commentsSections = document.querySelectorAll(commentsSelector);
// 遍历所有匹配的评论区域元素,并隐藏它们
commentsSections.forEach(function(section) {
section.style.display = 'none';
});
})();