Greasy Fork is available in English.
让你拥有更大更清晰的ac娘
当前为
// ==UserScript==
// @name ac娘表情放大
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 让你拥有更大更清晰的ac娘
// @author 猫猫
// @match *://www.acfun.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
let css = document.createElement('style');
const style ='#article-content .article-content .img-emot-ac,.ubb-emotion {max-width:100px !important;max-height:100px !important;}';
let node=document.createTextNode(style);
css.appendChild(node);
let head = document.querySelector('head');
head.appendChild(css)
})();