ShiMo Full Screen

ShiMo Edit Full Screen

  1. // ==UserScript==
  2. // @name ShiMo Full Screen
  3. // @name:zh-CN 石墨全屏
  4. // @version 0.0.1
  5. // @description ShiMo Edit Full Screen
  6. // @description:zh-CN 石墨编辑全屏
  7. // @author 1018ji
  8. // @include https://shimo.im/docs/*
  9. // @run-at document-end
  10. // @namespace https://gf.qytechs.cn/users/301526
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. var editor = null
  17. setTimeout(function() {
  18. editor = document.getElementById('editor');
  19. if (editor) {
  20. editor.style.width = 'auto';
  21. editor.style.marginLeft = '350px';
  22. editor.style.marginRight = '50px';
  23. }
  24. }, 2000);
  25. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址