// ==UserScript== // @name acfun表情放大 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 让你拥有更大更清晰的ac娘 // @author 猫猫 // @match *://www.acfun.cn/* // @grant none // @downloadURL 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) })();