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