Greasy Fork is available in English.

acfun表情放大

让你拥有更大更清晰的ac娘

// ==UserScript==
// @name         acfun表情放大
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  让你拥有更大更清晰的ac娘
// @author       猫猫
// @match        *://www.acfun.cn/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var css = document.createElement('style');
    var style ='.ac-comment-root-list .ubb-emotion,.area-comment-top .ubb-emotion{max-width:100px !important;max-height:100px !important;}';
    var node=document.createTextNode(style);
    css.appendChild(node);
    var head = document.querySelector('head');
    head.appendChild(css)
})();