调整eyny论坛帖子宽度为全屏显示

调整eyny论坛帖子宽度为全屏显示,嗯。

// ==UserScript==
// @name        调整eyny论坛帖子宽度为全屏显示
// @namespace   lolicraft
// @match        *://www.eyny.com/*
// @include     http://*.eyny.com/index.php
// @include     http://*.eyny.com/
// @include     http://www.eyny.com/
// @include     https://*.eyny.com/index.php
// @require		 https://code.jquery.com/jquery-latest.js
// @version     1.2
// @grant       none
// @run-at		 document-end
// @license MIT
// @description 调整eyny论坛帖子宽度为全屏显示,嗯。
// ==/UserScript==

// 调整enny论坛帖子宽度为100%

// Your Settings here
function Main()
{
   $(".wp").width("100%")
}
Main()