美文网首页
tampermonkey 简书宽屏模式插件

tampermonkey 简书宽屏模式插件

作者: 醉笙情丶浮生梦 | 来源:发表于2018-12-19 14:20 被阅读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%';
})();

相关文章

网友评论

      本文标题:tampermonkey 简书宽屏模式插件

      本文链接:https://www.haomeiwen.com/subject/rtljkqtx.html