屏幕那么宽中间内容位置那么小,看别人文章时候很多代码块都要手动滑动,只好自己动手了。
自己写的第一个油猴脚本
就只改了一个内容区域宽度,也没写多余的东西。
// ==UserScript==
// @name 简书宽屏模式
// @namespace //www.greatytc.com/
// @version 0.1
// @description try to take over the world!
// @author You
// @match *://www.greatytc.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var element = document.querySelector(".post");
element.style.width = '45%';
})();