Greasy Fork

Greasy Fork is available in English.

ac娘表情放大

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

目前为 2020-04-27 提交的版本。查看 最新版本

// ==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)
})();