Greasy Fork is available in English.

调整XIAAV论坛帖子宽度

调整XIAAV论坛帖子宽度为95%


    // ==UserScript==
    // @name        	调整XIAAV论坛帖子宽度
    // @namespace   amer0798
    // @match        	*://xav4.sbs/*
    // @include     	https://xav4.sbs/
    // @require		https://code.jquery.com/jquery-latest.js
    // @version    	1.1
    // @icon         	https://xav4.sbs/favicon.ico
    // @grant       	none
    // @run-at		document-end
    // @license MIT
    // @description 	调整XIAAV论坛帖子宽度为95%
    // ==/UserScript==
     
    // 调整XIAAV论坛帖子宽度为95%
     
    // Your Settings here
    function Main()
    {
       $(".wp").width("98%")
    }
    Main()