цЫ┐цНвчВ╣ш╡Юф╕║ЁЯШЖ
// ==UserScript==
// @name nga ЁЯШЖ
// @namespace http://tampermonkey.net/
// @version 0.2
// @description цЫ┐цНвчВ╣ш╡Юф╕║ЁЯШЖ
// @author izumi
// @match *://nga.178.com/*
// @match *://ngabbs.com/*
// @match *://bbs.nga.cn/*
// @license MIT
// @icon https://www.google.com/s2/favicons?sz=64&domain=ngabbs.com
// @grant none
// ==/UserScript==
(function () {
'use strict';
const style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = `
.goodbad a[title="цФпцМБ"] svg {
display: none;
}
.goodbad a[title="цФпцМБ"]:before {
content: 'ЁЯШЖ';
}`;
document.getElementsByTagName('head')[0].appendChild(style);
})();