调整村花论坛列表宽度

调整村花论坛 列表宽度为98%

// ==UserScript==
// @name        	调整村花论坛列表宽度
// @namespace   	amer0798
// @match        *://*.cunhua.beauty/*
// @include     	https://www.cunhua.beauty/
// @require		https://code.jquery.com/jquery-latest.js
// @version    	1.0
// @icon         https://www.cunhua.beauty/favicon.ico
// @grant       	none
// @run-at		document-end
// @license MIT
// @description 	调整村花论坛 列表宽度为98%
// ==/UserScript==
     
//调整村花论坛 列表宽度为98%
function Main()
{
	$(".wp").width("98%")
    $(".mn").width("80%")
}
Main()